-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrestaurants.html
More file actions
63 lines (62 loc) · 2.08 KB
/
restaurants.html
File metadata and controls
63 lines (62 loc) · 2.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style-rest.css" />
<script src="restaurants.js"></script>
<link rel="icon" href="/img/logo1.png">
<title>Skip The Books</title>
</head>
<body>
<header class="full-screen-header">
<nav class="nav nav-top">
<img class="logo" src="img/logo1.png" alt="Product Logo" />
<ul class="nav-list">
<li><a href="home.html">Home</a></li>
<li><a href="restaurants.html">Restaurants</a></li>
<li><a href="mySchedule.html">My Schedule</a></li>
<li><a href="myProfile.html">My Profile</a></li>
</ul>
</nav>
</header>
<div class="wrapper">
<button id="All" class="btn" onclick="showAllRestaurants()">All</button>
<button id="American" class="btn" onclick="showRestaurants('American')">
American
</button>
<button id="Chinese" class="btn" onclick="showRestaurants('Chinese')">
Chinese
</button>
<button id="Italian" class="btn" onclick="showRestaurants('Italian')">
Italian
</button>
<button id="Japanese" class="btn" onclick="showRestaurants('Japanese')">
Japanese
</button>
<button
id="Mediterranean"
class="btn"
onclick="showRestaurants('Mediterranean')"
>
Mediterranean
</button>
<button id="Mexican" class="btn" onclick="showRestaurants('Mexican')">
Mexican
</button>
<button id="Thai" class="btn" onclick="showRestaurants('Thai')">
Thai
</button>
</div>
<script>
showAllRestaurants();
</script>
<div id="restaurantDisplay" class="food-options"></div>
<script src="timer.js"></script>
</body>
</html>