-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (67 loc) · 2.68 KB
/
Copy pathindex.html
File metadata and controls
68 lines (67 loc) · 2.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Calculator">
<meta name="keywords" content="Calculator">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel = "apple-touch-icon" sizes = "180x180" href = "images/s-title-180-180.png">
<link rel = "icon" type = "image/png" sizes = "32x32" href = "images/s-title-32-32.png">
<link rel = "icon" type = "image/png" sizes = "16x16" href = "images/s-title-16-16.png">
<link rel = "mask-icon" href = "images/s-title.png">
<link rel = "shortcut icon" href = "images/s-title.png">
<link rel="stylesheet" href="assets/css/main.css" />
<title>Cocktail Browser</title>
<!-- external fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,500;1,300&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
<!-- external CSS link -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main class="main">
<section class="spaceLeft">
</section>
<section class="cocktailMainSection">
<h1>Find a Cocktail</h1>
<section class="drinkInfo">
<div class="drinkImg">
<h2 id="drinkName"></h2>
<img id="drinkImg" src="" alt="">
</div>
<section class="drinkText">
<div class="drinkIngredients">
<h2 class="drinkIngredientsH2 hidden">INGREDIENTS</h2>
<ol id="ingredientList">
</ol>
</div>
<div class="drinkInstructions">
<h2 class="drinkInstructionsH2 hidden">INSTRUCTIONS</h2>
<p id="drinkInstructions"></p>
</div>
</section>
</section>
<input type="text" name="" value="" placeholder="Enter Alcohol Type">
<div class="buttonFlex">
<button type="button" class="button hidden" id="lastDrink" name="button"><<</button>
<button type="button" class="button" id="findADrink" name="button">Find a Drink!</button>
<button type="button" class="button hidden" id="nextDrink" name="button">>></button>
</div>
</section>
<section class="spaceRight">
</section>
</main>
<footer>
<section class="footerSection">
<ul>
<li><a href="https://www.sjoseph.dev">About</a></li>
<li>|</li>
<li><a href="https://github.com/sjosephdev/cocktail-browser">GitHub</a></li>
</ul>
</section>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>