-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="media/favicon.ico">
<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=Montserrat&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css"/>
<title>Cocktails</title>
</head>
<body>
<div class="bg"></div>
<div class="bg bg2"></div>
<div class="bg bg3"></div>
<header>
<div class="container">
<h2 class="title">
<span class="title-word title-word-1">a</span>
<span class="title-word title-word-2">cocktail</span>
<span class="title-word title-word-3">web</span>
<span class="title-word title-word-4">app</span>
</h2>
</div>
</header>
<nav>
<button class="navButton" role="button" onclick="window.location.href='index.html';">Home</button>
<button class="navButton" role="button" onclick="window.location.href='sections/random.html';">Random cocktail</button>
<button class="navButton" role="button" onclick="window.location.href='sections/search.html';">Cocktail finder</button>
<button class="navButton" role="button" onclick="window.location.href='sections/video.html';">Video</button>
<button class="navButton" role="button" onclick="window.location.href='sections/contactMe.html';">Contact me</button>
</nav>
<main>
<br><br><br>
<div id="indexDiv">
<h2>Here you can find your favorite cocktail and learn how to prepare it. You can also request a random cocktail if you don't know what you want to drink. Enjoy it!</h2>
</div>
<script src="js/script.js"> </script>
</main>
</body>
</html>