Files
webtek-assignment-3/responsive.html
2025-10-23 20:10:40 +02:00

45 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>A title</title>
<meta charset="UTF-8">
<link href="style.css" rel="stylesheet">
</head>
<body>
<header>
<h1>Responsive Website Design</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="form.html">User Registration</a></li>
</ul>
</nav>
</header>
<main>
<section class="intro">
<h2>Welcome to our site</h2>
<p>This is a demonstration of a responsive website using HTML5 and CSS3.</p>
</section>
<section class="features">
<div class="feature-item">
<h3>Feature 1</h3>
<p>Description of feature 1.</p>
</div>
<div class="feature-item">
<h3>Feature 2</h3>
<p>Description of feature 2.</p>
</div>
<div class="feature-item">
<h3>Feature 3</h3>
<p>Description of feature 3.</p>
</div>
</section>
</main>
<footer>
<p>&copy; 2025 Responsive Website</p>
</footer>
</body>
</html>