forked from schouenkes/technigo-w3-project-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (48 loc) · 1.94 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
<!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="style.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Quicksand" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Lora" />
<title>Fork in the road</title>
</head>
<body>
<header>
<h1>Fork in the Road</h1>
<img class="logo-image" src="assets/fork-41080_1280.png" alt="fork" />
</header>
<section id="filterSection">
<div id="proteinContainer" class="protein-container">
<p>Choose a filter:</p>
<div class="filter-buttons">
<div class="button-row-1" id="buttonRow1">
<button class="button" id="allButton">All</button>
<button class="button" id="fishButton">Fish</button>
<button class="button" id="meatButton">Meat</button>
</div>
<div class="button-row-2" id="buttonRow2">
<button class="button" id="chickenButton">Chicken</button>
<button class="button" id="vegetarianButton">Vegetarian</button>
</div>
<div class="button-row-3" id="buttonRow3">
<button class="button" id="surpriseButton">Surprise me!</button>
</div>
</div>
</div>
<div id="timeContainer" class="time-container">
<p>Sort by cooking time:</p>
<button class="button" id="cookingTimeButton">By shortest</button>
<button class="button" id="longestCookingTime">By longest</button>
</div>
</section>
<section id="recipeContainer" class="recipe-container"></section>
<div class="footer">
<p>Created by: Maja, Ji and Paula</p>
<p>2024</p>
</div>
<script src="script.js" defer></script>
</body>
</html>