-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (62 loc) · 2.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title>Hotel Website</title>
</head>
<body>
<header>
<h1>Our Hotel</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="menu.html" target="_blank">Menu</a>
<a href="contact.html" target="_blank">Contact</a>
<a href="blog.html"target="_blank">blog</a>
</nav>
<section>
<h2 class="header">Special Dishes</h2>
<div class="menu">
<div class="dish">
<img src="https://images.pexels.com/photos/17433337/pexels-photo-17433337/free-photo-of-mumbai-style-vada-pav.jpeg" alt="vada-pav">
<h3>Vada-Pav</h3>
<button class="x">Price: ₹30</button>
</div>
<div class="dish">
<img src="https://s3-ap-south-1.amazonaws.com/betterbutterbucket-silver/renu-maurya20170915194616541.jpeg" alt="Dish 2">
<h3>Vada Usla Pav</h3>
<button class="x">Price: ₹30</button>
</div>
<div class="dish">
<img src="https://thumbs.dreamstime.com/b/misal-pav-buns-smeared-butter-served-spicy-sprouts-curry-trail-mixture-chopped-onions-chilli-lemons-bun-indian-starter-171494146.jpg" alt="Dish 3">
<h3>Misal-Pav</h3>
<button class="x">Price: ₹60</button>
</div>
<div class="dish">
<img src="https://img.freepik.com/free-photo/deep-fried-samosas-dumplings-gourmet-appetizer-generated-by-ai_188544-13491.jpg" alt="Dish 1">
<h3>Samosa</h3>
<button class="x">Price: ₹25</button>
</div>
<div class="dish">
<img src="https://media.istockphoto.com/id/1008799838/photo/image-of-a-glass-of-lassi-made-from-milk-curd.webp?b=1&s=170667a&w=0&k=20&c=2Gwc7ZkPecqqRhuLvGzNOF0zcblU75X9ZlgcfP-xXCc=" alt="Dish 2">
<h3>Lassi</h3>
<button class="x">Price: ₹20</button>
</div>
<div class="dish">
<img src="https://www.laviadelte.com/uploaded/o/2383.jpg" alt="Dish 3">
<h3>Tea</h3>
<button class="x">Price: ₹12</button>
</div>
</div>
</section>
<section>
<h2>Welcome ! </h2>
<p style="color:#fff;">Explore our delicious menu and contact us for reservations.</p>
</section>
<footer>
© 2023 Our Hotel. All rights reserved.
</footer>
</body>
</html>