-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (41 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="This is where your description goes">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="keywords" content="one, two, three">
<!-- favicon -->
<link rel="shortcut icon" href="https://img.icons8.com/dotty/80/ceb4b7/cocktail.png" type="image/x-icon">
<!-- title -->
<title>Drinks Directory</title>
<!-- external CSS link -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header id="index">
<h1>Drinks Directory</h1>
</header>
<section class="formSection">
<form action="GET">
<label for="searchBox"> Search for a Drink:
<input id="searchBox" type="text" placeholder="eg. margarita">
</label>
<label for="alcoholicCheckBox" class="switch"> Non-Alcoholic: <input id="alcoholicCheckBox" type="checkbox" class="checkbox">
<div class="slider"></div></label>
</form>
</section>
<section id="mainContent">
<h2>Results:</h2>
<ul id="resultsList">
</ul>
</section>
<footer>
<p>
Drinks Directory website coded by Mohid Alam / Alamicrodev. Source: <a target="_blank" href="https://github.com/Alamicrodev/DrinksDirectory-Site">Github Repo</a>
</p>
</footer>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>