-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.06 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1.06 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, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="grid">
<div>
<header class="start-header" data-started="false">
<h1 class="gradient" data-text="Give me a random beer!">Give me a random beer!</h1>
<button id="giveMeABeerPlease" class="btn btn-start">please</button>
</header>
</div>
<div>
<section class="beer-section">
<img src="https://images.punkapi.com/v2/178.png" alt="" class="beer-thumbnail" id="beerThumb">
<h1 id="beerTitle">Beer Title</h1>
<p id="beerDesc">Beer Description</p>
<ul>
<li id="beerSour">Not Sour</li>
<li id="beerBrewed">First brewed 12 years ago</li>
</ul>
</section>
</div>
</div>
<script src="src/main.js" type="module"></script>
</body>
</html>