Basic Elements - Learn HTML - Free Interactive HTML Tutorial

Image
Basic Elements The use of basic HTML Tags.. Coding.... <!DOCTYPE html> <html> <head> <title>Example page</title> </head> <body> <h1>Heading 1</h1> <h2>Heading 1</h2> <h3>Heading 1</h3> <h4>Heading 1</h4> <h5>Heading 1</h5> <h6>Heading 1</h6> <p>This is peragraph.</p> <p>Horizontal Line Below</p> <hr /> </body> </html> Output Of Above Code... Output

HTML Declaration

HTML <!DOCTYPE> Declaration

What is DOCTYPE..?

Doctype is not a HTML Tag. It Describe the version of HTML document page.

Use Of DOCTYPE....

<!DOCTYPE html>
<html>
<head>
<title>doctype</title>
</head>
<font size=22>
<body bgcolor="green">
The text of the document
</body>

</html>

Output Of Above Code..


Comments

Popular posts from this blog

HTML Character Sets