1 HTML
1 HTML
EMPLOYABILITY
CSS 3
Bootstrap
By Ashok Kumar naik
www.task.telangana.gov.in
EDUCATION
www.task.telangana.gov.in
How does the
EDUCATION
EMPLOYABILITY
Internet
ENTREPRENEURSHIP
works
www.task.telangana.gov.in
EDUCATION
EMPLOYABILITY
ENTREPRENEURSHIP The internet
www.task.telangana.gov.in
EDUCATION
EMPLOYABILITY
www.google.com
ENTREPRENEURSHIP
www.task.telangana.gov.in
EDUCATION
EMPLOYABILITY
ENTREPRENEURSHIP
ISP
DNS
www.task.telangana.gov.in
https://www.submarinecablemap.com/
EDUCATION
EMPLOYABILITY
ENTREPRENEURSHIP
www.task.telangana.gov.in
How Do
EDUCATION
Websites
EMPLOYABILITY
Actually
Work?
ENTREPRENEURSHIP
www.task.telangana.gov.in
How Do Websites Actually Work?
EDUCATION
• Now, the data that you receive from the server usually
consists of three types of
files; HTML, CSS, and JavaScript.
www.task.telangana.gov.in
EDUCATION
EMPLOYABILITY
ENTREPRENEURSHIP Website
www.task.telangana.gov.in
EDUCATION
EMPLOYABILITY
ENTREPRENEURSHIP Website
www.task.telangana.gov.in
EDUCATION
EMPLOYABILITY
ENTREPRENEURSHIP Website
www.task.telangana.gov.in
EDUCATION
www.task.telangana.gov.in
Full Stack Development
EDUCATION
Full stack
EMPLOYABILITY
Backend Emerging
Front-end Database
Technology
ENTREPRENEURSHIP
www.task.telangana.gov.in
Anatomy of html
EDUCATION
EMPLOYABILITY
ENTREPRENEURSHIP
www.task.telangana.gov.in
HTML editors
EDUCATION
• Notepad
• Notepad ++
EMPLOYABILITY
• Atom
• Sublime Text
• VS Code
ENTREPRENEURSHIP
• Brackets
www.task.telangana.gov.in
Need of HTML
EDUCATION
on YouTube.
• While browsing the Web, when you click on a hyperlink,
you navigate to another web page. This is possible with the
help of HTML.
ENTREPRENEURSHIP
www.task.telangana.gov.in
What is HTML?
EDUCATION
www.task.telangana.gov.in
What is HTML?
EDUCATION
www.task.telangana.gov.in
What is HTML?
EDUCATION
www.task.telangana.gov.in
Basic Document Structure
EDUCATION
<html>
<head>
<title></title>
ENTREPRENEURSHIP
</head>
<body>
</body>
</html>
www.task.telangana.gov.in
Basic Document Structure - Elements
EDUCATION
<title> Defines the title that should be displayed on the browser tab
Used by browsers (control how to display content or reload the page), search engines (keywords), or other
web services.
www.task.telangana.gov.in
Basic Document Structure - Elements
EDUCATION
• <head>...</head> tag
• <body>...</body> tag
• HTML document/web page is saved with .htm or .html
ENTREPRENEURSHIP
extension.
www.task.telangana.gov.in
Tryout : Sample Code
EDUCATION
<!DOCTYPE html>
<html>
EMPLOYABILITY
<head>
<meta charset="UTF-8">
<title>Title of the document</title>
</head>
ENTREPRENEURSHIP
<body>
Hello World
Content of the document......
</body>
</html>
www.task.telangana.gov.in
Exercise : Sample Code
EDUCATION
• Problem Statement
• Open any website in the Chrome browser.
EMPLOYABILITY
www.task.telangana.gov.in
Exercise : Sample Code
EDUCATION
EMPLOYABILITY
ENTREPRENEURSHIP
www.task.telangana.gov.in
Exercise : Sample Code
EDUCATION
EMPLOYABILITY
ENTREPRENEURSHIP
Code 1: Code 2:
EMPLOYABILITY
</head> </head>
<body> <body>
Hello World! Hello World!
</body> </boDy>
</html> </html>
www.task.telangana.gov.in
Platform-independency
EDUCATION
shown below.
ENTREPRENEURSHIP
www.task.telangana.gov.in
DOCTYPE Declaration
EDUCATION
www.task.telangana.gov.in
DOCTYPE Declaration
EDUCATION
<!DOCTYPE html>
<html> • Provide a proper DOCTYPE
<head> declaration while designing an
<title> Sample page </title>
HTML web page, so that browser
ENTREPRENEURSHIP
</head>
<body> can understand the version and
Hello world!
interpret elements of the web page
</body>
</html> appropriately.
www.task.telangana.gov.in
Types of Elements
EDUCATION
• It is a good practice to use the closing tag for the respective start tag without fail .
www.task.telangana.gov.in
Types of Elements
EDUCATION
• Block Element:
• A block element begins on a new line occupying the entire
width of the parent tag.
• Inline Element:
ENTREPRENEURSHIP
www.task.telangana.gov.in
Sectioning Elements
EDUCATION
www.task.telangana.gov.in
Sectioning Elements
EDUCATION
<footer>
• The <footer> element is used to include footer content
like copyright, about us, terms and conditions link, etc.
One footer is included per page.
www.task.telangana.gov.in
Sectioning Elements
EDUCATION
Links
<br> Img
<hr> Audio
List
<img> Video
Table
ENTREPRENEURSHIP
<input> Source
Forms
Iframe
div <link> etc…,
Semantic elements Etc…,
Span etc…, www.task.telangana.gov.in
Html headings and paragraphs
EDUCATION
• <!DOCTYPE html>
<html>
EMPLOYABILITY
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
ENTREPRENEURSHIP
</html>
www.task.telangana.gov.in
HTML Heading and Paragraph
EDUCATION
www.task.telangana.gov.in
EDUCATION
www.task.telangana.gov.in
List Element
EDUCATION
</dt>
<dd> Description Definition 2
</dd>
</dl>
www.task.telangana.gov.in
Link Element
EDUCATION
hyperlinks.
• This text usually appears with an underline and in a different color.
• This color mapping is automatically done by the browser for all text hyperlinks.
• Image hyperlink:
• A clickable image is used to take the user to another web page.
ENTREPRENEURSHIP
• Bookmark hyperlink:
• A clickable text/image is used to take the user to another part of the same web page.
• Email hyperlink:
• It allows users to send an email by clicking on that link.
• Contact number hyperlink:
• It allows the user to call a number by clicking on that link.
www.task.telangana.gov.in
Table Elements
EDUCATION
www.task.telangana.gov.in
Form Elements
EDUCATION
www.task.telangana.gov.in
Form Element
EDUCATION
• The form input element is used to collect details from the user.
ENTREPRENEURSHIP
www.task.telangana.gov.in
Input Types - Text, Password, Email and Number
EDUCATION
www.task.telangana.gov.in
Knowledge Check
EDUCATION
www.task.telangana.gov.in
Knowledge Check
EDUCATION
1) Adding Styling for web page contents like header, footer, etc.
2) Adding the clarity of the role for page content.
3) Ability to provide an idea of what kind of content each portion of
the page contains.
ENTREPRENEURSHIP
A. 1 and 3
B. 2 and 3
C. 1 and 2
www.task.telangana.gov.in
Knowledge Check
EDUCATION
of this?
A. It declares the version of HTML
B. It defines the capabilities of HTML
C. It defines the features of HTML
ENTREPRENEURSHIP
www.task.telangana.gov.in
Knowledge Check
EDUCATION
A. <img>
B. <iframe>
ENTREPRENEURSHIP
C. <source>
www.task.telangana.gov.in
Knowledge Check
EDUCATION
B.Markup Language
C.Programming Language
D.Network Protocol
ENTREPRENEURSHIP
www.task.telangana.gov.in
Knowledge Check
EDUCATION
6.HTML uses
A.User defined tags
EMPLOYABILITY
B.Pre-specified tags
C.Fixed tags defined by the language
D.Tags only for linking
ENTREPRENEURSHIP
www.task.telangana.gov.in
Knowledge Check
EDUCATION
B.HTML Tag
C.HTML Attribute
D.HTML Element
ENTREPRENEURSHIP
www.task.telangana.gov.in
Knowledge Check
EDUCATION
A. href
B. action
C. id
ENTREPRENEURSHIP
D. location
www.task.telangana.gov.in
Knowledge Check
EDUCATION
Choose the element from the given options which encloses all
other elements in the web page
A. <title>
ENTREPRENEURSHIP
B. <html>
C. <body>
D. <head>
www.task.telangana.gov.in
Knowledge Check
EDUCATION
B. Server
C. Web Browser
D. Interpreter
ENTREPRENEURSHIP
www.task.telangana.gov.in
Publish your website
EDUCATION
www.task.telangana.gov.in
EDUCATION
EMPLOYABILITY
ENTREPRENEURSHIP
Thank You
www.task.telangana.gov.in