-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (33 loc) · 1018 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="description" content="This is where your description goes" />
<meta name="keywords" content="one, two, three" />
<title>Cocktails</title>
<!-- external CSS link -->
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="div-body">
<div class="header">
<h1>Cocktail Recipes</h1>
<div class="input-container">
<input
id="drinkInput"
type="text"
value=""
placeholder="Type a cocktail name..."
/>
<button type="button" name="button" class="btn">Search</button>
</div>
</div>
<div class="list">
<ul id="drinks" class="drinks"></ul>
<ul id="selected_drink" class="selected_drinks"></ul>
</div>
</div>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>