-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (55 loc) · 2.15 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
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<title> Pairing Beer With Every Meal </title>
<meta name="robots" content="index, follow" />
<meta charset="UTF-8">
<meta name="keywords" content="Beer Pair Pairing Cayla Savitzky Demo Single Page Application SPA">
<meta name = "description" content = "Here at Paired Beer we find a beer for every meal! This is a demo single page application by Cayla Savitzky">
<meta name="author" content="Cayla Savitzky">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel ="stylesheet" href = "BeerSearch.css">
<script src = "JQuery_Compressed.js"></script>
<link href="https://fonts.googleapis.com/css?family=Fjalla+One|Nunito" rel="stylesheet">
<!--
fix image wiggle
-->
</head>
<body onresize="screenResize()">
<header>
<h1>
Beer Pairing
</h1>
<div>
<p>
The pursuit of the perfect brew to accompany dinner
</p>
</div>
</header>
<div id = search_bar_container>
<input type="text" name="search_bar_input" value = "Beef" id = "search_bar_input">
<button onclick = "search()"> Search </button>
</div>
<div id = "sections">
<input type = "radio" name = tabs class = tab_checkbox id = all_tab_checkbox checked>
<label class = "tab" id = all_tab onclick = "show_all();" for = all_tab_checkbox>
All Matches
</label>
<input type = "radio" name = tabs class = tab_checkbox id = favorites_tab_checkbox>
<label class = "tab" id = favorites_tab onclick="show_favorites()" for = favorites_tab_checkbox>
Favorites
</label>
</div>
<div id = 'content'>
</div>
<button id = load_button onclick = "load_new();"> Load More </button>
<button id = go_to_top onclick = "go_to_top();"> TOP </button>
<footer>
<div>Icons made by <a href="https://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></div>
<p> Page built by Cayla Savitzky </p>
</footer>
<script src = "BeerSearch.js"></script>
</body>
<div id = ruler>
</div>
</html>