-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 1.05 KB
/
index.html
File metadata and controls
25 lines (25 loc) · 1.05 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
<!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>Cocktail Search</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/f6f8577a22.js" crossorigin="anonymous"></script>
<!-- NEED TO LINK TO https://use.fontawesome.com/releases/v5.0.8/css/all.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=Bitter:ital,wght@0,300;0,400;0,500;0,600;1,300;1,600&display=swap" rel="stylesheet">
</head>
<body>
<section class="search">
<h1>Cocktail Recipes</h1>
<input type="text" name="" value="">
<button type="button" name="button">Search</button>
</section>
<section class="results"></section>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>