HTML Document Code For Website - Learn About Website | DaddyFile

0

HTML Documents Explain

All HTML documents must start with a type declaration: <!DOCTYPE html>.
The HTML document itself begins with <html> and ends with </html>.
The visible part of the HTML document is between <body> and </body>.


Html Code:

<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>


Html Code Result:

My First Heading

My first paragraph.

Post a Comment

 
Top