-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (55 loc) · 2.21 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
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
<!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">
<!-- calls fonts and materalize css -->
<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=Sansita+Swashed&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="assets/style.css">
<title>Bake and Brew</title>
</head>
<header>
<h1>Bake and Brew</h1>
</header>
<body>
<figure></figure>
<!-- this allows the user to search for ingredients -->
<div class="row">
<div class="col s12 m4 l3 ingredients">
<div class="row">
<form class="col s12" id="ingredient-form">
<div class="row">
<div class="input-field col s6">
<input placeholder="Add Ingredient" id="ingredientInput" type="text" class="formI">
<label for="first_name"></label>
<button id="sbmit">Add Ingredient</button>
<button id="clear">Clear Ingredients</button>
</div>
</div>
</form>
<!-- holds the ingredient list -->
<ul id="ingredient-list"></ul>
</div>
</div>
<!-- holds search and clear buttons -->
<div class="col s12 m8 l9">
<div>
<button id="submitbutton">Submit</button>
<button id="gone">Clear</button>
</div>
<!-- holds recipe cards -->
<div class="row" id="cardcontainer" style="margin-top: 40px;">
</div>
<!-- holds beer cards -->
<div class="row" id="beer" style="margin-top: 40px;">
</div>
</div>
<!-- calls Jquery -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="./assets/script.js"></script>
</body>
</html>