-
Notifications
You must be signed in to change notification settings - Fork 1
/
Featured Restaurants.html
193 lines (174 loc) · 4.33 KB
/
Featured Restaurants.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!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>Document</title>
<link rel="stylesheet" href="directory.css" />
<style>
#nav-1 {
width: 88%;
margin: auto;
display: flex;
/* border: 1px solid red; */
}
#nav1-child-1 {
margin-left: 50px;
}
#nav1-child-2 {
width: 16%;
height: 60px;
margin-left: 12%;
margin-top: 10px;
}
#nav1-child-2 img {
width: 20%;
margin-left: 12px;
margin-top: 7%;
}
#nav1-child-3 {
display: flex;
gap: 10px;
margin-left: 9%;
align-items: center;
}
#nav1-child-3 p {
font-size: 12px;
}
#nav1-child-3 h4,
a {
font-size: 14px;
text-decoration: none;
color: white;
}
#nav1-child-3>h4>a{
color: white;
font-weight: bold;
font-size: 16px;
width: 60px;
}
#facebook {
width: 80px;
height: 20px;
line-height: 20px;
padding: 0px 2px 2px 2px;
background-color: #35619f;
font-weight: bold;
font-size: 13px;
text-align: center;
border-radius: 5px;
}
#email {
width: 80px;
height: 20px;
line-height: 20px;
padding: 0px 2px 2px 2px;
background-color: #666666;
font-weight: bold;
font-size: 13px;
text-align: center;
border-radius: 5px;
}
#nav-2 {
background-color: #2bb673;
height: auto;
width: 100%;
}
#nav-2 > div {
width: 74%;
margin: auto;
display: flex;
justify-content: space-between;
}
#nav-2 > div a {
font-size: 18px;
line-height: 40px;
color: white;
}
#signup {
border-left: 1px solid rgb(198, 196, 196);
padding: 5px;
}
#footer {
background-color: #2bb673;
height: auto;
width: 96%;
padding: 30px;
}
#footer > div:nth-child(1) {
width: 75%;
height: auto;
margin: auto;
display: grid;
grid-template-columns: repeat(5, 1fr);
}
#footer > div > div > a {
text-decoration: none;
display: block;
line-height: 1.5;
font-weight: normal;
color: #eeeeee;
font-size: 13px;
}
.fot-head {
font-size: 16px;
color: white;
font-weight: bolder;
margin-bottom: 10px;
}
#fot-para {
margin: auto;
width: 100%;
margin-top: 20px;
}
#fot-para > p {
text-align: center;
color: #eeeeee;
font-size: 10px;
background-color: #2bb673;
line-height: 1.5;
}
body{
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="navbar"></div>
<div id="Dir_top">
<h2>Featured Restaurants In Malaysia</h2>
<h5 style="line-height: 15px">
Want to know more about the featured restaurants and cafes? Hop in to
their KindMeal shops to check out their meat-free deals and delicious
food.
</h5>
<h5 style="line-height: 15px; margin-bottom: -10px">
Some restaurants listed may not have active deals, but they all
certainly offer tasty meat-free food that you can try right away!
</h5>
</div>
<div id="filt">
<button id="tab1">Vegetarian Directory</button>
<button id="tab2" style="background-color: #04be5a; color: white">
Featured Restaurants
</button>
<button id="tab3">Food Menu</button>
<button id="tab4">Food Map</button>
</div>
<div id="buttonss">Page:</div>
<div id="cont1"></div>
<div id="buttonss1">Page:</div>
<div id="footer"></div>
</body>
</html>
<script type="module">
let navbar = document.getElementById("navbar");
import DishplayNavbar from "./components/navbar.js";
navbar.innerHTML = DishplayNavbar();
let footer = document.getElementById("footer");
import dishplayFooter from "./components/footer.js";
footer.innerHTML = dishplayFooter();
</script>
<script src="Featured Restaurants.js"></script>