-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (61 loc) · 2.62 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
69
70
71
72
73
74
75
76
77
78
79
<!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 href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
<title>What's For Dinner</title>
</head>
<body background="https://i.pinimg.com/originals/43/84/88/438488ee81ba24bdbf365ee7d95b8379.jpg">
<div class="container mx-auto w-1/2 bg-green-100">
<h1 class="text-5xl text-center font-serif"><u>What's For Dinner?</u></h1>
<br><br>
<p class="text-center font-bold text-3 font-serif">Hungry? Indecisive? Don't want to go out to eat? You're in the right place. Search below for a keyword like rice or eggs and a recipe will appear.
</p>
<br>
</div>
<div class="font-serif container mx-auto w-1/2 text-center bg-green-200">
<br>
<input class="text-center" id="inputValue" type=text placeholder=" Food Keyword ">
<br>
<button id="btn" type="search" class="text-3 font-bold">Search</button>
</div>
<div class="font-serif container mx-auto w-1/2 text-center bg-green-300" id= "recipes">
<h2 class="text-3xl">Recipes</h2>
<br>
<h3 class= "mx-auto" id="recipeName"></h3>
<h5 class= "mx-auto" id="cuisineType"></h5>
<p class="mx-auto font-serif"></p>
<h3 id="recipeName"></h3>
<h5 id="cuisineType"></h5>
<p></p>
<h3 class= "mx-auto" id="recipeName"></h3>
<h5 class= "mx-auto" id="cuisineType"></h5>
<p class="mx-auto font-serif"></p>
<br><br><br>
</div>
<div class="font-serif container mx-auto w-1/2 h-1/12 text-center bg-green-400 justify-content" id="ingredients">
<h2 class="text-3xl">Ingredients</h2>
<br><br>
<p class= "mx-auto justify-center"></p>
<p></p>
<p class= "mx-auto justify-center"></p>
<br><br><br>
</div>
<div class="font-serif container mx-auto text-center w-1/2 bg-green-500" id="instructions">
<h2 class="text-3xl">Instructions</h2>
<p class="font-serif mx-auto"></p>
<p class="font-serif"></p>
<p class="font-serif mx-auto"></p>
<br><br><br>
</div>
<div class="font-serif container mx-auto text-center w-1/2 bg-green-600" id="fortune">
<img class="mx-auto" src="https://i.pinimg.com/originals/51/c5/34/51c53424d2ae15709414a0ac7236a640.gif">
<button id="fortuneCookie">Click for Fortune</button>
<br><br><br>
</div>
</div>
<script src="assets/js/recipes.js"></script>
</body>
</html>