Getting Started With HTML
Getting Started With HTML
Agenda
4 HTML Skeleton
5 HTML Comments
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
What is HTML?
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
What is HTML?
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
What is HTML?
● Stands for HyperText Markup Language.
● HTML defines how the web page looks and how to display content with the help
of elements.
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Features of HTML
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Features of HTML
● Learning curve is very easy (easy to modify).
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
HTML Editors
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
HTML Editors
● Notepad++
● Atom
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Notepad
Notepad++
Atom
Sublime Text
HTML Skeleton
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
HTML Skeleton
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
HTML Skeleton
<!DOCTYPE html>
Instruction to the browser about the HTML version.
<html>
Root element which acts as a container to hold all the code Browser
should know that this a HTML document Permitted content: One head tag
followed by one body tag.
<head>
Everything written here will never be displayed in the browser. It contains
general information about the document - Title, definitions of css and
script sheets, Metadata(information about the document).
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
HTML Skeleton
<body>
● Examples:
○ <p> This is our first paragraph. </p>
○ <a href=“https://www.google.com”>Go To Google</a>
○ <img src="photo.jpg">
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
HTML Comments
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
HTML Comments
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
HTML Elements
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
HTML Elements
● Elements are created using tags.
Basic Structure
○ Takes up full block or width and adds structure in the web page.
○ Always starts from new line, dividing a page into coherent blocks.
○ Example :
■ <p>
■ <div>
■ <h1>...<h6>
■ <ol>
■ <ul>
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Element Types
● Inline Level :
○ Example :
■ <span>
■ <strong>
■ <em>
■ <img>
■ <a>
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Basic Tags
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Basic Tags
● Enclosed within <>
● <title> tag
○ Whatever is written this tag comes up in the web page’s tab.
○ Defines the title of the page.
○ Syntax: <title>Home</title>
● <p> tag
○ Defines the paragraph.
○ Syntax:<p > This is our first Paragraph </p>
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
List of Self closing/Empty tags
● <hr> tag
○ Stands for horizontal rule.
○ Dividing the web page.
● <br> tag
○ Stands for break line.
○ Moving to next line.
● <img> tag
○ To add images in the web page.
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Basic Tags
● <h1> tag …… <h6> tag
○ Stands for heading tag.
○ Defines heading of a page.
○ h1 represents most important page in the page.
○ h6 represents least important page in the page.
● <strong> tag
○ Defines the text to be bold.
○ Replaced <b>tag //HTML5
● <em> tag
○ Defines the text to be italic.
○ Replaced <i>tag//HTML5
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Basic Tags
● <ol> tag
○ Stands for ordered list.
○ To define series of events that take place in some order.
○ Example making a tea (like a flow chart).
○ <ol>.........</ol>
● <ul> tag
○ Stands for unordered list.
○ To define series of events that take place where order is not
important.
○ Example your hobbies.
○ <ul>.........</ul>
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Basic Tags
● <li> tag
○ Defines the list item.
○ Used inside the ol and ul tag to define the events.
○ <li></li>
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Basic Tags
● <img> tag
○ Used to add images in a web page.
○ Syntax: <img src=”url”>
○ Self closing tag.
● <a> tags
○ Used to add links in a web page.
○ <a href=”url”> Name of the link </a>
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Attributes
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Attributes
● Properties associated with each tag.
● Global Attribute:
○ Title : Add extra information(hover).
○ Style : Add style information(font, background, color, size).
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited
Thank You
Proprietary content. ©Great Learning. All Rights Reserved. Unauthorized use or distribution prohibited