forked from Technigo/js-project-recipe-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.42 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
<!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="styles.css">
<title>Recipe Library</title>
</head>
<body>
<h1>Recipe Library</h1>
<section class="filters">
<div>
<h2>Filter cousines</h2>
<button type="button" class="filter" id="all-btn">All</button>
<button type="button" class="filter" id="italy-btn">Italian</button>
<button type="button" class="filter" id="usa-btn">American</button>
<button type="button" class="filter" id="asia-btn">Asian</button>
<button type="button" class="filter" id="china-btn">Chinese</button>
<button type="button" class="filter" id="vegetarian-btn">Vegetarian</button>
</div>
<div>
<h2>Sort on by</h2>
<button class="sort" id="hightolowbtn">Cooking time</button>
<button type="button" class="sort" id="popular-btn">Popularity</button>
<button class="sort" id="sort-price-btn">Price</button>
<button class="sort" id="random-btn">Random</button>
</div>
</section>
<section class="recipes" id="container">
<!-- Recipe cards will be dynamically added here -->
</section>
<script src="cook.js"></script>
<script src="api.js"></script>
</body>
</html>