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

HTML

The document is an HTML template for a simple website featuring a header with navigation links to Home, About, and Contact sections. Each section contains introductory content about the website and the creator. The footer includes copyright information for the year 2025.

Uploaded by

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

HTML

The document is an HTML template for a simple website featuring a header with navigation links to Home, About, and Contact sections. Each section contains introductory content about the website and the creator. The footer includes copyright information for the year 2025.

Uploaded by

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

<!

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>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to My Website</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>

<section id="home">
<h2>Home</h2>
<p>This is the homepage of my simple website.</p>
</section>

<section id="about">
<h2>About Me</h2>
<p>Welcome to my website! I love coding and designing websites.</p>
</section>

<section id="contact">
<h2>Contact</h2>
<p>Email: [email protected]</p>
</section>

<footer>
<p>&copy; 2025 My Website. All rights reserved.</p>
</footer>
</body>
</html>

You might also like