-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcsspractice.html
More file actions
93 lines (85 loc) · 2.68 KB
/
csspractice.html
File metadata and controls
93 lines (85 loc) · 2.68 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bistro Bliss</title>
<link rel="stylesheet" href="csspractice.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
</head>
<body>
<!-- HEADER SECTION -->
<header class="container">
<h1>Bistro Bliss</h1>
<p>Delicious food, cozy vibes 🍝✨</p>
</header>
<!-- NAVIGATION -->
<nav class="container">
<ul>
<li><a href="#about">About</a></li>
<li><a href="#menu">Menu</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- HERO SECTION -->
<section id="hero" class="container">
<h2>Welcome to Bistro Bliss</h2>
<p>Where every bite feels like home.</p>
<button id="button">Explore Menu</button>
</section>
<!-- ABOUT SECTION -->
<section id="about" class="container">
<h2>About Us</h2>
<p>We're a cozy corner in town serving love on plates since 2010.</p>
</section>
<!-- MENU SECTION WITH A TABLE -->
<section id="menu" class="container">
<h2>Our Menu</h2>
<table>
<tr>
<th>Dish</th>
<th>Description</th>
<th>Price</th>
</tr>
<tr>
<td>Spaghetti Carbonara</td>
<td>Classic Italian pasta with creamy sauce</td>
<td>$12</td>
</tr>
<tr>
<td>Grilled Chicken</td>
<td>Herb-marinated chicken served with veggies</td>
<td>$15</td>
</tr>
<tr>
<td>Chocolate Lava Cake</td>
<td>Rich, gooey dessert with vanilla ice cream</td>
<td>$8</td>
</tr>
</table>
</section>
<!-- IMAGE GALLERY -->
<section id="gallery" class="container">
<h2>Gallery</h2>
<div class="image-grid">
<img src="images/carbonara3.jpeg" alt="Delicious dish" id="img"/>
<img src="images/chicken2.jpeg" alt="Tasty meal" id="img"/>
<img src="images/lava.jpeg" alt="Dessert heaven" width="300" height="200
" id="img" />
</div>
</section>
<!-- CONTACT SECTION -->
<section id="contact" class="container">
<h2>Contact Us</h2>
<p>📞 +123 456 7890</p>
<p>📍 123 Food Street, Flavor Town</p>
</section>
<!-- FOOTER -->
<footer class="container">
<p>© 2025 Bistro Bliss. All rights reserved.</p>
</footer>
</body>
</html>