-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (70 loc) · 2.6 KB
/
Copy pathindex.html
File metadata and controls
97 lines (70 loc) · 2.6 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="A cocktail finder website that uses the CocktailDB API">
<meta name="keywords" content="one, two, three">
<title>Cocktail Maker</title>
<!-- external CSS link -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.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=Sirivennela&display=swap" rel="stylesheet">
</head>
<body>
<main>
<h1>Which Cocktail?</h1>
<div class="alphabet-row">
<div class="alphabet"></div>
<select class="letter-results-dropdown hidden">
<option>Select a cocktail...</option>
</select>
</div>
<section class="shaker-container">
</section>
<div class="master-buttons-container">
<img class="shaker shaker-left" src="assets/cocktail-shaker.png" alt="shaker">
<div class="search-buttons-container">
<div class="search-name-container">
<input class="typeIt" type="text" name="" placeholder="Search by name...">
<button id="shake-btn" type="button">Shake</button>
</div>
<div class="search-ing-container">
<input class="typeIt" id="ingredient-input" type="text" placeholder="Search by ingredient, e.g. gin">
<button id="ingredient-btn" type="button">Shake</button>
</div>
</div>
<img class="shaker shaker-right" src="assets/cocktail-shaker.png" alt="shaker">
</div>
<section class="shaker-container">
</section>
<div class="surprise-container">
<button id="surprise-btn" type="button">Surprise me</button>
</div>
<div class="tiki-container">
<!-- Window area that contains transparent hole -->
<div class="drink-window">
<div class="tiki-shutter"></div>
<img id="drink-img" class="drink" src="" alt="">
</div>
<!-- Static tiki bar frame -->
<img class="tiki-frame" src="assets/TikiBar-1200px-02.png" alt="">
</div>
<section class="cocktailMethod">
<div class="h2Holder">
<h2></h2>
</div>
<h3>Ingredients</h3>
<div class="ingredient-images"></div>
<ul class="ingredients"></ul>
</section>
</div>
<section id="instructionSection" class="cocktailMethod">
<h3>Instructions</h3>
<div class="instructions"></div>
</section>
<script type="text/javascript" src="js/main.js"></script>
</main>
</body>
</html>