-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathRecipes.html
More file actions
41 lines (41 loc) · 1.39 KB
/
Copy pathRecipes.html
File metadata and controls
41 lines (41 loc) · 1.39 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
<!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>Recipes | Fastfit</title>
<link rel="stylesheet" href="/Recipes.css">
</head>
<body>
<div id="head">
<p class="heding">Recipes</p>
<p class="description">Healthy, whole food recipes that nourish your body and your tastebuds.</p>
</div>
<div>
<hr class="line">
<!-- select tag -->
<div style="display: flex; padding-left: 90px;">
<div class="select">
<select name="sortByAuthors" id="sortByAuthors">
<option value="author" >AUTHORS</option>
<option value="Patterson">Patterson</option>
</select>
</div>
<div class="select">
<select name="sortByMembership" id="sortByMembership">
<option value="FILTERS">FILTERS</option>
<option value="true">Free</option>
<option value="false">Plus</option>
</select>
</div>
</div>
<!-- show recipes -->
<div class="container">
<div class="cards_container">
</div>
<div id="pagination_wrapper" class="pagination_wrapper"></div>
</div>
</body>
</html>
<script src="./Recipes.js"></script>