Structure with HTML

Structure with HTML

What is HTML?



HTML= Hyper Text Markup Language
         = the structure of a Web page



HTML document structure

<!DOCTYPE html>
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

<!--Write your comments--!>

comments html的圖片搜尋結果

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>

headings html的圖片搜尋結果


Paragraph

<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
paragraph html的圖片搜尋結果

Comments