Structure with HTML
What is HTML?
HTML= Hyper Text Markup Language
= the structure of a Web page
= the structure of a Web page
HTML document structure
This is not a HTML Tag
Declaration of version of HTML
*First line of code*
<html>
<head>
<title>Title</title>
</head>
<body>
<h1>Heading</h1>
<p>Paragraph</p>
</body>
</html>
Basic Tags
Comments

Comments will not be displayed on the web page.
It is just a reminder when you are coding.
Headings
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>

Paragraph
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<p>This is another paragraph.</p>

Comments
Post a Comment