code
code
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Complex Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h1>Welcome to Our Website</h1>
<p>This is a sample complex website structure.</p>
</section>
<section id="about">
<h2>About Us</h2>
<p>Information about our company.</p>
</section>
<section id="services">
<h2>Our Services</h2>
<p>Details about the services we offer.</p>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name">
<label for="email">Email:</label>
<input type="email" id="email" name="email">
<input type="submit" value="Submit">
</form>
</section>
</main>
<footer>
<p>© 2025 Complex Website. All rights reserved.</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>