63 lines
1.8 KiB
HTML
63 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Our different kitchens</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="responsive.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="#">Contact</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>
|
|
<figure>
|
|
<img
|
|
src="images/kitchen1.jpg"
|
|
alt="Modern appliances">
|
|
<figcaption>Modern appliances</figcaption>
|
|
</figure>
|
|
<p>Modern appliances something something description.</p>
|
|
</div>
|
|
<div class="feature-item">
|
|
<h3>Feature 2</h3>
|
|
<figure>
|
|
<img
|
|
src="images/kitchen2.jpg"
|
|
alt="industrial kitchen">
|
|
<figcaption>Suitable for private and commmercial settings</figcaption>
|
|
</figure>
|
|
<p>Restaurants kitchens something something.</p>
|
|
</div>
|
|
<div class="feature-item">
|
|
<h3>Feature 3</h3>
|
|
<figure>
|
|
<img
|
|
src="images/kitchen3.jpg"
|
|
alt="food preparatoin">
|
|
<figcaption>Safe and efficient food preparation</figcaption>
|
|
</figure>
|
|
<p>Food preparation something something.</p>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
<footer>
|
|
<p>© 2025 Responsive Website</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|