-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (99 loc) · 3.16 KB
/
index.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
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
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Cafe - Home</title>
<link rel="stylesheet" href="cafe.css">
</head>
<body>
<header>
<h1>Welcome to Sassy Sips Cafe</h1>
</header>
<nav>
<ul>
<li><a href="#menu">Menu</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#location">Location</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<main>
<section id="menu">
<h2>Our Menu</h2>
<p>Check out our delicious menu offerings:</p>
<section class="menu-section" id="menu-breakfast">
<h2>Breakfast</h2>
<p>Start your day with our delightful breakfast options:</p>
<ul>
<li>
<h3>Croissant</h3>
<p>Freshly baked croissant.</p>
</li>
<li>
<h3>Pancakes</h3>
<p>Fluffy pancakes with maple syrup.</p>
</li>
</ul>
</section>
<section class="menu-section" id="menu-lunch">
<h2>Lunch</h2>
<p>Enjoy a variety of tasty lunch items:</p>
<ul>
<li>
<h3>Sandwiches</h3>
<p>Delicious sandwiches with a side of chips.</p>
</li>
<li>
<h3>Soup of the Day</h3>
<p>Today's special soup.</p>
</li>
</ul>
</section>
<section class="menu-section" id="menu-desserts">
<h2>Desserts</h2>
<p>Indulge in our sweet treats and desserts:</p>
<ul>
<li>
<h3>Chocolate Cake</h3>
<p>Decadent chocolate cake with a scoop of ice cream.</p>
</li>
<li>
<h3>Fruit Parfait</h3>
<p>Fresh fruit and yogurt parfait.</p>
</li>
</ul>
</section>
</section>
<!-- ... (remaining HTML code) ... -->
<section id="about">
<h2>About Us</h2>
<p>We are a cozy cafe, dedicated to serving the best coffee and pastries. Our mission is to provide a relaxing environment where you can enjoy quality food and beverages.
At our cafe, we've created a haven for the modern-day baddies and fashion-forward femmes who appreciate a touch of elegance with their daily dose of caffeine.
</p>
</section>
<section id="location">
<h2>Location</h2>
<p>Visit us at:</p>
<address>
Sassy Sips Cafe<br>
near btown City, lucknow
</address>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>You can reach us at: <a href="tel:878-963-8725">878-963-8725</a></p>
<p>Email: <a href="pratikshasingh923@gmail.com">pratikshas@sassycafe.com</a></p>
</section>
<section id="special">
<h2>Special of the Day</h2>
<p id="special-of-the-day"></p>
</section>
</main>
<footer>
<p>© Sassy Sips Cafe @PratikshaSingh</p>
</footer>
<script src="cafe.js">
</script>
</body>
</html>