Headings Are Important
Use HTML headings for headings only. Don't use headings to make text BIG or bold.
Search engnes use you headings to index the structure and content of you web pages.Since users may skim your pages by its headings, it is important to use headings to show the document structure. (h1)headings should be used as main headings, followed by h2 heading,then the less important h3 headings,and so on to h6.
HTML Line
the <hr/> tag creates a horizontal line in an HTML page.
The hr element can be used to separate content
Example:
HTML Comments
Comments can be inserted into the HTML code to make it more readable and understandable. Comments are ignored by the browser and are not displayed.
Comments are written like this :
HTML Tag Reference
Tag reference contains additional information about these tags and their attributes.
You will learn more about html tags and attributes in the next chapters of this tutorial.
Click hear for more reference
Use HTML headings for headings only. Don't use headings to make text BIG or bold.
Search engnes use you headings to index the structure and content of you web pages.Since users may skim your pages by its headings, it is important to use headings to show the document structure. (h1)headings should be used as main headings, followed by h2 heading,then the less important h3 headings,and so on to h6.
HTML Line
the <hr/> tag creates a horizontal line in an HTML page.
The hr element can be used to separate content
Example:
<html> <body> <p>This is the paragraph </p> <hr/> <p>This is the paragraph2 </p> </body> </html> |
Comments can be inserted into the HTML code to make it more readable and understandable. Comments are ignored by the browser and are not displayed.
Comments are written like this :
<html> <body> <!--This comment will not be displayed--> <p>This is the paragraph </p> </body> <html> |
Tag reference contains additional information about these tags and their attributes.
You will learn more about html tags and attributes in the next chapters of this tutorial.
Tag | Description |
<html> | Defines an HTML document |
<body> | Defines an document’s body |
<h1> to <h6> | Defines an HTML headings |
<hr/> | Defines a horizontal line |
<!--> | Defines a comment |
Click hear for more reference