forked from destinyfsetzer/brewery-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (29 loc) · 1.02 KB
/
Copy pathindex.html
File metadata and controls
33 lines (29 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=Recursive&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Hanuman:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css" />
<title>Buzzed</title>
<!-- FAVICON -->
<link rel="shortcut icon" href="./buzzed-favIcon.png" />
</head>
<body>
<div class="textcontainer">
<span class="particletext bubbles">Buzzed</span>
</br>
</br>
How Buzzed do you wanna get?
</div>
<div class="button-container">
<button onclick="lowBeers()">Keep it chill 5% -</button>
<button onclick="highBeers()">Let's get LIT 5% +</button>
<button onclick="randomBeer()">Wildin' Out</button>
</div>
<ul id="all-beer"></ul>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script src="index.js"></script>
</body>
</html>