-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
138 lines (121 loc) · 5.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pine Restaurant - Mazgaon, Mumbai 400010</title>
<link rel="stylesheet" href="css/navbar.css">
<link rel="stylesheet" href="css/home.css">
<link rel="stylesheet" href="css/cards.css">
<link rel="stylesheet" href="css/footer.css">
<!-- Font awesome cdn -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Google fonts -->
<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=Montserrat:wght@300;400;500;600;700&display=swap"
rel="stylesheet">
</head>
<body>
<!-------------- navbar -------------------->
<nav class="navbar">
<div class="logo"><i class="fa-solid fa-utensils"></i> Pine Restaurant</div>
<!-- Creating toggle button for responsiveness -->
<div class="hamburger-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<div class="navbar-links">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#popular">Popular</a></li>
<li><a href="#special-combos">Special Combos</a></li>
<li><a href="#menu">Menu</a></li>
<li><a href="#about-us">About us</a></li>
</ul>
</div>
</nav>
<!-------------- home -------------------->
<section class="home" id="home">
<div class="content">
<h3>Food made with love</h3>
<h1>Cuisine -</h1>
<p>Chinese, North Indian, Mughlai, Sichuan</p>
<h1>Address</h1>
<p>321, Nasser Palace, Dockyard Road, Mazgaon, Mumbai</p>
<a href="order.html" class="order-open">Order Now</a>
</div>
<div class="image">
<img src="img/home-poster.avif" alt="">
</div>
</section>
<!-------------- Order dialog -------------------->
<dialog class="modal" id="modal">
<a href="https://www.swiggy.com/restaurants/pine-restaurant-byculla-mumbai-53693" class="swiggy" target="_blank">
<img src="img/swiggy.webp" alt="">
<p>Swiggy</p>
</a>
<a href="https://www.zomato.com/mumbai/pine-restaurant-mazgaon/order" class="zomato" target="_blank">
<img src="img/zomato.webp" alt="">
<p>Zomato</p>
</a>
<p class="orderrr">Order directly from us -</p>
<p class="num">022 2377 4259</p>
<buttom class="order-close"><i class="fa-solid fa-xmark"></i></buttom>
</dialog>
<!-------------- Popular -------------------->
<section class="popular" id="popular">
<h1 class="heading">Our <span>Popular Dishes</span></h1>
<div class="card-container">
<!-- Added through displayFood.js -->
</div>
</section>
<!------------ Special Combos ---------------->
<section class="special-combos" id="special-combos">
<h1 class="heading"><span>Pine Special</span> Combo Meals</h1>
<div class="card-container card-display">
<!-- Added through displayFood.js -->
</div>
</section>
<!------------ Menu ---------------->
<section class="menu" id="menu">
<h1 class="heading"><span>Menu</span></h1>
<div class="gallery">
<img src="img/Menu/menu-1.avif" alt="">
<img src="img/Menu/menu-2.avif" alt="">
<img src="img/Menu/menu-3.avif" alt="">
<img src="img/Menu/menu-4.avif" alt="">
</div>
</section>
<!------------ About Us ---------------->
<section class="about-us" id="about-us">
<h1 class="heading">About <span>Us</span></h1>
<div class="opening-hours">
<h3>Business Hours</h3>
<p>Monday - Sunday : 8AM - 12AM</p>
</div>
<div class="location">
<h3>Our location</h3>
<p>321, Nasser Palace Nawab Tank Bridge</p>
<p>Road Dockyard, Wadi Bandar, Mazgaon Mumbai</p>
<p>Maharashtra 400010, India</p>
</div>
</section>
<!------------ Footer ---------------->
<footer>
<h5>Made as a personal project by
<a href="https://github.com/muneeb-mp/" target="_blank"><span>Muneeb Phansopkar <i
class="fa-brands fa-github"></i></a> </span>
</h5>
<h5 class="admin-login"><a href="/1-login/login.html">Admin Login</a></h5>
</footer>
<!------------ Javascript links ---------------->
<script src="js/navbar.js"></script>
<script src="js/order.js"></script>
<script src="js/displayFood.js"></script>
</body>
</html>