-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
173 lines (147 loc) · 5.55 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Lumanosimo&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Pocket Cafe</title>
</head>
<body>
<div class="Home-1">
<div class="navbar">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Menu</a></li>
<li><a href="#">Vision</a></li>
<li><a href="#">About</a></li>
</ul>
</div>
<hr class="hr">
<div class="Brand">
<h1>Pocket Cafe</h1>
<p class="text">LOW COST HIGH QUALITY</p>
</div>
</div>
<div class="Home-2">
<div class="logo">
<img src="Image/Logo.png" alt="">
</div>
<div class="Info">
<p>WELCOME</p>
</div>
</div>
<headline> Come and Dine </headline>
<Line class="Line">WITH THE FINEST</Line>
<hr>
<div class="Home-3">
<div class="box">
<div class="SubBox">
<img src="Image/Box1.png" class="img">
<heading>Fresh Daily</heading>
</div>
<para class="para">
Savour the creamy goodness of Champion Fruit Cream. We bet, there's the goodness of cream in every bite!
</para>
</div>
<div class="box">
<div class="SubBox">
<img src="Image/2-Box.png" class="img">
<heading>Savoury Food</heading>
</div>
<para class="para">
Sumptuous delicious food baked in our cafe with curated ingredients and recipes curated ingredients and
recipes.
</para>
</div>
<div class="box">
<div class="SubBox">
<img src="Image/3-Box.png" class="img">
<heading>Good Food</heading>
</div>
<para class="para">
Each and every day we strive to better serve our community, customers with food that's fresh, tasty and
healthy.
</para>
</div>
</div>
<div class="Menu">
<h2>MOST POPULAR DISH</h2>
<div class="main-Menu">
<div class="card ">
<a class="Name" href="#">
<Dish-Name> Burger </Dish-Name>
<img class="Card-Img" src="Image/Burger.jpg" alt="">
<p class="">Sumptuous delicious food baked in our cafe with curated ingredients</p>
<price class="price">₹150</price>
</a>
</div>
<div class="card reveal">
<a class="Name" href="#">
<Dish-Name>French Fries</Dish-Name>
<img class="Card-Img" src="Image/Frenchfries.jpg" alt="">
<p class="">Sumptuous delicious food baked in our cafe with curated ingredients</p>
<price class="price">₹40</price>
</a>
</div>
<div class="card reveal">
<a class="Name" href="#">
<Dish-Name>Noodle</Dish-Name>
<img class="Card-Img" src="Image/Noodles.jpg" alt="">
<p class="">Sumptuous delicious food baked in our cafe with curated ingredients</p>
<price class="price">₹50</price>
</a>
</div>
<div class="card reveal">
<a class="Name" href="#">
<Dish-Name>Pizaa</Dish-Name>
<img class="Card-Img" src="Image/Pizza.jpg" alt="">
<p class="">Sumptuous delicious food baked in our cafe with curated ingredients</p>
<price class="price">₹90</price>
</a>
</div>
<div class="card reveal">
<a class="Name" href="#">
<Dish-Name>Combo</Dish-Name>
<img class="Card-Img" src="Image/Combo.jpg" alt="">
<p class="">Sumptuous delicious food baked in our cafe with curated ingredients</p>
<price class="price">₹180</price>
</a>
</div>
</div>
</div>
<hr>
<!-- <h2 class="Us">About Us</h2> -->
<div class="About" sty>
<table class="table">
<tbody>
<tr>
<td>
<img src="Image/Logo.png" class="AboutLogo" alt="">
</td>
<td style="width: 5%; background-color: rgb(0, 0, 0);">
</td>
<td>
Pocket Cafe is a website which I created for practising HTML and CSS you can connect me with social media handle
</td>
<td style="width: 5%; background-color: rgb(0, 0, 0);">
</td>
<td>
Connect with us:
<div class="contact">
<img src="Image/Linkdin.png" class="Social">
<img src="Image/twitter.png" alt="" class="Social">
<img src="Image/Instagram_icon.png" alt="" style="width: 50px;
margin-bottom: 14px; margin-left: 15px;" class="Social">
</div>
</td>
</tr>
</tbody>
</table>
<COPY>
© 2023 Mosin Shaikh | All Rights Reserved
</COPY>
</div>
</div>
</body>
</html>