-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
65 lines (58 loc) · 2.54 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
<!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">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css">
<link rel="stylesheet" href="./assets/css/style.css">
<title>What's in Your Pantry?</title>
</head>
<body class="color">
<header>
<section class="hero">
<div class="hero-body">
<p class="title has-text-dark">
What's in your pantry?
</p>
<p class="subtitle has-text-dark">
Let us help you out.
</p>
</div>
</section>
</header>
<main>
<div class="columns is-variable is-9 is-centered pt-5" id="column-container">
<!--chosen ingredients column-->
<div class="column is-3 m-3 is-justify-content-flex-start scroll-bar" id="ingredient-items">
<h3 class="title is-3 has-text-dark">Ingredients</h3>
<div class="card my-2">
<div class="card-content my-1">
<div class="content my-1">
<div class="control" id="add-item-box">
<input class="input" type="text" placeholder="Type an ingredient here!" id="ingredient-input"></input>
<button class="button is-light" type="button" id="add-btn">Add item</button>
<button class="button is-light" type="button" id="clear-btn">Clear item(s)</button>
</div>
</div>
</div>
</div>
<div class="btn-container has-background-grey">
<button class="button is-warning is-rounded m-2" type="button" id="search-btn">Get recipes!</button>
</div>
</div>
<!--recipe results column-->
<div class="column is-3 m-3 is-justify-content-flex-start scroll-bar" id="recipe-results">
<h3 class="title is-3 has-text-dark">Recipe Options</h3>
</div>
<!--expanded recipe column-->
<div class="column is-3 m-3 is-justify-content-flex-start scroll-bar" id="recipe-expanded">
<h3 class="title is-3 has-text-dark">Chosen Recipe</h3>
</div>
</div>
</main>
<script src="./assets/js/script.js"></script>
</body>
<footer>
</footer>
</html>