-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (46 loc) · 1.86 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
44
45
46
47
48
49
50
51
52
<!-- DIY Dog Search tool using Punk API - Michael McGrorty 6/11/18 -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>DIY Dog Search</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Rubik" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
</head>
<body>
<div>
<h1>DIY Dog Search</h1>
<h2>Get a random Brewdog beer</h2>
</div>
<div id="formrow" style="display: none;">
<button id="plus">+</button>
<input type="text" placeholder="Search term" id="query"/>
<select id="searchtype">
<option value="abv_gt=">ABV Greater Than</option>
<option value="abv_lt=">ABV Less Than</option>
<option value="ibu_gt=">IBU Greater Than</option>
<option value="ibu_lt=">IBU Less Than</option>
<option value="ebc_gt=">EBC Greater Than</option>
<option value="ebc_lt=">EBC Less Than</option>
<option value="beer_name=">Beer Name</option>
<option value="yeast=">Yeast</option>
<option value="brewed-before=">Brewed Before (MM-YYYY)</option>
<option value="brewed-after=">Brewed After (MM-YYYY)</option>
<option value="malt=">Malt</option>
<option value="hops=">Hops</option>
<option value="food=">Food</option>
</select>
</div>
<div>
<span id="form"></span>
<button id="random">RANDOM</button>
<button id="search">SEARCH</button>
</div>
<p id="info">Click a beer for more info!</p>
<div id="beerdetails">
</div>
<script src="main.js"></script>
</body>
</html>