forked from Technigo/project-library
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (54 loc) · 1.75 KB
/
index.html
File metadata and controls
54 lines (54 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Recipe Library</title>
<link rel="stylesheet" href="./style.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Anton&family=Didact+Gothic&family=Hind:wght@300;400;500;600;700&family=Honk&family=Inter:wght@300&display=swap"
/>
</head>
<body>
<h1>Recipe Library</h1>
<main>
<button class="random-button" id="random-btn" type="button">
Give me a random recipe!
</button>
<section class="filter-section">
<div class="filter">
<h2>Filter on kitchen</h2>
<div class="filter-buttons">
<button class="filter-button" id="all-btn" type="button">
All
</button>
<button class="filter-button" id="italy-btn" type="button">
Italy
</button>
<button class="filter-button" id="usa-btn" type="button">
USA
</button>
<button class="filter-button" id="china-btn" type="button">
China
</button>
</div>
</div>
<div class="sort">
<h2>Sort on time</h2>
<div class="sort-buttons">
<button class="sort-button" id="descending-btn" type="button">
Descending
</button>
<button class="sort-button" id="ascending-btn" type="button">
Ascending
</button>
</div>
</div>
</section>
<section class="recipe-section" id="recipe-section"></section>
</main>
<!-- JavaScript file -->
<script src="./script.js"></script>
</body>
</html>