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

Professional HTML Example

This document provides a professional HTML page structure example. It includes a sample HTML code with a DOCTYPE declaration, metadata in the head section, and visible content in the body, including a header, main content, and footer. The document serves as a guide for creating a basic HTML webpage.

Uploaded by

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

Professional HTML Example

This document provides a professional HTML page structure example. It includes a sample HTML code with a DOCTYPE declaration, metadata in the head section, and visible content in the body, including a header, main content, and footer. The document serves as a guide for creating a basic HTML webpage.

Uploaded by

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

Professional HTML Example

This document demonstrates a professional HTML page structure.

Example HTML Code


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Website</title>
</head>
<body>
<header>
<h1>Welcome to My Website</h1>
</header>
<main>
<p>This is a sample professional HTML page.</p>
</main>
<footer>
<p>© 2026 My Website</p>
</footer>
</body>
</html>

Explanation
DOCTYPE defines the HTML version. The head section contains metadata and the page title. The
body contains visible content such as header, main content, and footer.

You might also like