-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipe.html
67 lines (57 loc) · 2.42 KB
/
recipe.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recipes</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="assets/styles/recipe.css">
</head>
<body>
<!-- Nav Bar -->
<div class="nav-wrapper">
<nav>
<ul class="nav-icons">
<li><a href="index.html"><i class="fa-solid fa-house"></i></li>
<li><a href="recipe.html"><i class="fa-solid fa-cake-candles" style="color: #935215;"></i></a></li>
<li><a href="location.html"><i class="fa-solid fa-location-dot" style="color: #7c4527;"></i></a></li>
</ul>
</nav>
</div>
<!-- Hero section -->
<section>
<div class="hero-image" id="difficultyLevels">
<div class="hero-text">
<!-- <h1>Recipes</h1> -->
<h2>Indulgence at it's finest. How adventurous are you feeling?</h2>
<div id="sortBtn">
<button>Easy</button>
<button>Medium</button>
<button>Hard</button>
</div>
</div>
</div>
</section>
<div id="recipe-methods" class="container"></div>
<!-- Recipe API section -->
<section>
<div class="recipeCards row" id="recipeCards">
<div class="recipes">
<!--This is where all the recipe titles are being pulled from script.js-->
<a id="recipeBtn"></a>
</div>
</div>
</section>
<!-- Footer section -->
<footer>
<ul class="icons">
<li><a href="https://www.tiktok.com/@visitlondon/video/7184473978608684293?q=bakery%20in%20london&t=1701702761403"><i class="fa-brands fa-tiktok fa-lg" style="color: #a9540f;"></i>
<li><a href="https://www.instagram.com/p/C0HjCuksS9L/"><i class="fa-brands fa-instagram fa-lg" style="color: #a26510;"></i>
<li><a href="https://www.youtube.com/shorts/9-8LUW5tqBg"><i class="fa-brands fa-youtube fa-lg" style="color: #9a6418;"></i>
</ul>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/cac3a8c0cc.js" crossorigin="anonymous"></script>
<script src="./assets/script/script.js"></script>
</body>
</html>