|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Home Page</title>
|
|
<link rel="stylesheet" href="../css/style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Welcome to Our Multi-Page Website</h1>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="index.html">Home</a></li>
|
|
<li><a href="about.html">About</a></li>
|
|
<li><a href="services.html">Services</a></li>
|
|
<li><a href="contact.html">Contact</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
<section>
|
|
<h2>Introduction</h2>
|
|
<p>This is the homepage of our multi-page website, built with best practices in mind.</p>
|
|
</section>
|
|
</main>
|
|
<footer>
|
|
<p>© 2026 Our Company</p>
|
|
</footer>
|
|
<script src="../js/main.js"></script>
|
|
</body>
|
|
</html> |