-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeer.html
49 lines (40 loc) · 1.7 KB
/
beer.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
44
45
46
47
48
49
<!doctype html>
<head>
<title>Beer Me | Stuart Douglas</title>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0"/>
<link href="css/beer.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Source+Serif+Pro:400,600" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script src="js/beer.js"></script>
</head>
<body>
<div class="header-banner">
<a class="float-left" href="http://stuartdouglas.ca/index.html">
<div class="header-button">
<p>← Back to Portfolio</p>
</div>
</a>
<a class="float-right" href="" onclick="resetTriedBeers()">
<div class="header-button">
<p>Reset Tried Beers</p>
</div>
</a>
</div>
<div class="beer-me-container">
<div id="loading-spinner">
<h1 id="loading-text">Loading...</h1>
<img id="loading-image" src="images/loading.gif" alt="Loading..."/>
</div>
<h1 id="beer-name"> </h1>
<div id="beer-img"></div>
<p id="beer-caption"> </p>
<h3><input id="turnt-checkbox" type="checkbox" onchange="turntCheckboxChanged(this)">Feeling turnt?</h3>
<p class="light-text">Only beers with at least 6.5% alcohol by volume will be considered. Use wisely.</p>
<a class="highlighted-button" onclick="beerMeClicked()">Beer Me!</a>
</div>
<div class="tried-beers-container">
<h1>Tried Beers</h1>
<div id="tried-beers-list">
</div>
</div>
</body>