-
Notifications
You must be signed in to change notification settings - Fork 0
/
breakfast.html
41 lines (41 loc) · 1.29 KB
/
breakfast.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Delicious Breakfast</title>
<link rel="stylesheet" href="thali.css">
</head>
<body>
<header class="header" style="background-color:#FFCEB1;color:#EB3E1D; padding: 15px;">
<h1>Start Your Day with a Scrumptious Breakfast</h1>
</header>
<main>
<h2>Our Breakfast Menu</h2>
<section class="imgsec">
<img src="poha.jpg" height="230px" width="230px" alt="poha">
<h3>Oil-free Poha</h3>
<p>Poha: A Light and Versatile Indian Breakfast Delight</p>
<button>Buy Now</button>
</section>
<hr>
<section class="product">
<img src="sprouts.jpg" width="250px" alt="sprouts">
<h3>Sprouts Salad</h3>
<p>Beyond ordinary salad - explore the vibrant world of sprouted flavors.</p>
<button>Buy Now</button>
</section>
<hr>
<section class="product">
<img src="fruit.jpg" alt="Product 3">
<h3>Fruit Chaat</h3>
<p>Chopped fresh fruits meet vibrant spices for a delightful Indian salad experience</p>
<button>Buy Now</button>
</section>
<hr>
<footer>
<p>© 2024 Delicious Breakfast</p>
</footer>
</main>
</body>
</html>