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

A Ashish

This document is an HTML template for a basic website featuring a header with navigation links, a main section with three subsections (Home, About, Contact), and a footer. It includes a link to an external stylesheet for styling. The content is structured to provide an introduction to the website and ways for visitors to get in touch.

Uploaded by

cissikartop
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)
8 views1 page

A Ashish

This document is an HTML template for a basic website featuring a header with navigation links, a main section with three subsections (Home, About, Contact), and a footer. It includes a link to an external stylesheet for styling. The content is structured to provide an introduction to the website and ways for visitors to get in touch.

Uploaded by

cissikartop
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 First HTML Page</title>
<!-- You can add external stylesheets here -->
<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>

<main>
<section id="home">
<h2>Home Section</h2>
<p>This is the home section where you can introduce your website.</p>
</section>

<section id="about">
<h2>About Section</h2>
<p>Here you can tell more about your website or yourself.</p>
</section>

<section id="contact">
<h2>Contact Section</h2>
<p>If you want to get in touch, here's how you can contact us.</p>
</section>
</main>

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

You might also like