-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
75 lines (57 loc) · 2.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Query Cuisine</title>
<!--Google Fonts-->
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link
href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Dancing+Script:wght@400;500;600;700&family=Source+Serif+Pro:wght@300&display=swap"
rel="stylesheet">
<!--Font Awesome Link-->
<link rel="stylesheet" href="./assets/webfonts/fontawesome.min.css">
<!--External CSS Stylesheets-->
<link rel="stylesheet" href="./assets/css/primitive.css">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<!--Container-->
<div class="container small-container">
<header>
<h1 class="vertical-center">Query Cuisine</h1>
</header>
<img src="assets/images/black-underline-swirl.png" alt="fancy swirl" id="fancySwirl">
<!-- Select ingredient title -->
<h4 class="flex-small" id="ingredient-title">Choose Your Ingredients
</h4>
<!--ingredient-selection container -->
<div class="ingredient-selection">
<!--Select Item #1-->
<textarea class="ingredient flex-small" id="item1" placeholder="ex. apples"></textarea>
<!--Select Item #2-->
<textarea class="ingredient flex-small" id="item2" placeholder="ex. brie"></textarea>
<!--Select Item #3-->
<textarea class="ingredient flex-small" id="item3" placeholder="ex. chicken"></textarea>
<!--Select Item #4-->
<textarea class="ingredient flex-small" id="item4" placeholder="ex. dumplings"></textarea>
<!--Select Item #5-->
<textarea class="ingredient flex-small" id="item5" placeholder="ex. eggs"></textarea>
</div>
<!--end of ingredient-selection class-->
<button class="submitBtn" type="submit" value="Submit" id="search-recipe">Submit</button>
<button class="button" type="submit" value="Reset" id="reset">Clear</button>
<!--Recipe Suggestion title-->
<h4 id="suggestions-title">Suggested Recipes</h4>
<!--Recipe Suggestions container-->
<div class="suggestions-container" id="recipeCards">
</div>
<!--end of recipe suggestions container-->
</div>
<!--end of Container-->
<!-- link to the jQuery Library & script file -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="./assets/app.js"></script>
</body>
</html>