0% found this document useful (0 votes)
70 views1 page

HTML Document Structure Example

This HTML document contains a simple web page with an H1 heading of "Hello World" and a paragraph stating that this is a web page. The page uses HTML tags like <html>, <head>, <title>, <body>, <h1> and <p> to structure the content and provide a heading and paragraph text.

Uploaded by

Manjinder Judge
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
70 views1 page

HTML Document Structure Example

This HTML document contains a simple web page with an H1 heading of "Hello World" and a paragraph stating that this is a web page. The page uses HTML tags like <html>, <head>, <title>, <body>, <h1> and <p> to structure the content and provide a heading and paragraph text.

Uploaded by

Manjinder Judge
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Hello World</title>
</head>
<body>
<h1>Hello World</h1>
<p>This is a web page.</p>
</body>
</html>

You might also like