-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (68 loc) · 2.76 KB
/
Copy pathindex.html
File metadata and controls
71 lines (68 loc) · 2.76 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!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" />
<!-- Import Stylesheet -->
<link rel="stylesheet" href="./styles/styles.css" />
<!-- Import Favicon -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<!-- Import Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Nunito&family=Playfair+Display:wght@400;700&display=swap" rel="stylesheet" />
<!-- Import Animate.css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<title>The Recipe Wizard</title>
</head>
<body>
<div class="container">
<!-- Header -->
<header class="wrapper">
<h1 class="animate__animated animate__fadeInDown">The Recipe Wizard</h1>
</header>
<!-- Main -->
<main class="wrapper">
<section class="instructions">
<p>
To get started, open your fridge or pantry to take stock of what you've got! Enter some ingredients in the field below, and just like magic, some
recipes will show.
</p>
</section>
<form action="submit" class="addIngredient">
<label for="recipe" class="sr-only">Enter Ingredients:</label>
<input type="text" id="recipe" placeholder="Enter Ingredients" />
<button type="submit"><i class="fas fa-plus" aria-label="Add Ingredient(s)"></i></button>
</form>
<form action="" class="searchContainer">
<button type="reset">
Clear All <span class="binIcon"><i class="far fa-trash-alt"></i></span>
</button>
<ul>
<!-- Ingredient LI elements will be generated and displayed here -->
</ul>
<button type="submit">Find Recipes</button>
</form>
<div>
<ul class="recipeResults">
<!-- Recipe Cards to be displayed based on ingredients searched -->
</ul>
</div>
<div class="modalRoot">
<!-- Detailed Recipe Modal shown here when user clicks recipe card button -->
</div>
</main>
</div>
a
<!-- Footer -->
<footer>
<p>Created at <a href="www.junocollege.com" target="_blank">Juno College</a> by Gavyn Holt and Sherry Truong</p>
</footer>
<!-- Javascript -->
<!-- Import FontAwesome -->
<script src="https://kit.fontawesome.com/b5c85453fa.js" crossorigin="anonymous"></script>
<!-- Standard Script -->
<script src="./script.js"></script>
</body>
</html>