-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
147 lines (136 loc) · 4.97 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mixologie - Cocktail Recipes</title>
<link rel="icon" type="image/png" href="./assets/favicon.png" />
<!-- CSS Styles -->
<link rel="stylesheet" href="./styles/styles.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Ovo&family=Raleway:ital,wght@0,300;0,400;1,300;1,400&display=swap"
rel="stylesheet">
</head>
<body>
<header>
<div class="wrapper">
<div class="header-content">
<div class="header-mobile-container">
<h1>Mixologie.</h1>
<a class="mobile-nav" tabindex="0"><i class="fas fa-bars" title="Hamburger Menu"></i>
<span class="sr-only">“Hamburger icon to trigger mobile navigation menu</span></a>
</div>
<nav class="header-nav js-nav">
<ul class="header-nav-list">
<li><a href="#about">About</a></li>
<li><a href="#main">Cocktail Recipes</a></li>
</ul>
</nav>
</div>
<div class="header-description">
<h2>Everything You Need to Craft The Perfect Cocktail.</h2>
</div>
<!-- Header Wrapper ENDS -->
</div>
</header>
<main>
<section id="about" class="about">
<div class="wrapper">
<div class="about-content">
<h2>About Us.</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Pariatur iure nulla fugiat omnis suscipit
recusandae rem reprehenderit vero dolorem placeat.
</p>
</div>
<!-- About Content Wrapper ENDS -->
</div>
</section>
<section id="main" class="main">
<div class="wrapper">
<div class="main-title">
<h2>Cocktail Recipes.</h2>
</div>
<div class="main-container">
<div class="main-img">
<img src="./assets/recipe-section-one.jpg"
alt="Two glasses filled with rum cocktail,
garnished with mint and fresh lime.">
</div>
<div class="main-search">
<div class="main-content">
<p>Find the perfect cocktail based on ingredient you would like to use:</p>
<ul class="main-content-steps">
<li>Select a search option before entering a query in the input field.</li>
<li>Get a curated list of recipes.</li>
<li>Click on one of the recipe cards to see more details.</li>
<li>Craft the perfect cocktail.</li>
<li>Enjoy!</li>
</ul>
</div>
<div class="search-buttons-heading">
<h4>Search By</h4>
<div class="search-buttons">
<button class="name-search">Cocktail Name</button>
<button class="ingredient-search">Ingredient</button>
</div>
</div>
<form>
<label for="input" class="sr-only">Ingredient</label>
<input id="input" type="text" placeholder="Select a search option">
<button id="submit-btn" type="submit" class="btn">Search</button>
</form>
<!-- Main Search Div ENDS -->
</div>
<!-- Main Container ENDS -->
</div>
<div class="modal">
<!-- Dynamically add drink recipe in the modal -->
</div>
<div class="recipe-container">
<!-- Dynamically add items here -->
</div>
<!-- Main Content Wrapper ENDS -->
</div>
</section>
<footer>
<div class="wrapper">
<div class="footer-container">
<div class="footer-logo">
<h4>Mixologie.</h4>
</div>
<div class="footer-nav">
<nav>
<ul class="footer-nav-list">
<li><a href="#about">About</a></li>
<li><a href="#main">Cocktail Recipes</a></li>
</ul>
</nav>
</div>
</div>
<div class="footer-copyright">
<span>© 2020 Karmen Salim & Adam Batstone
<a href="https://junocollege.com/" class="juno-footer-link">
| Created at Juno College</a>
</span>
</div>
<!-- Footer Wrapper ENDS -->
</div>
</footer>
</main>
<!-- Scripts -->
<script src='https://code.jquery.com/jquery-3.5.1.min.js'
integrity='sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0='
crossorigin='anonymous'></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"
integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU="
crossorigin="anonymous"></script>
<script src="scripts/app.js"></script>
<script src="scripts/mobile-nav.js"></script>
</body>
</html>