29 lines
730 B
HTML
29 lines
730 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="#">Home</a></li>
|
|
<li><a href="#">About</a></li>
|
|
<li><a href="#">Contact</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
<section>
|
|
<h1>Welcome to My Website</h1>
|
|
<p>This is a paragraph of text to introduce visitors to the site and inform them about what they can find here.</p>
|
|
</section>
|
|
</main>
|
|
<footer>
|
|
<p>© 2024 My Website</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|