forked from LeinadZz/Bottoms-Up-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (112 loc) · 3.74 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--Google Font Developer API Preconnect Link-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<!--Google Font Developer API - Titan Font Family-->
<link
href="https://fonts.googleapis.com/css2?family=Titan+One&display=swap"
rel="stylesheet"
/>
<!--Google Font Developer API - Pacifico Font Family-->
<link
href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap"
rel="stylesheet"
/>
<!--Bulma CSS Framework-->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css"
/>
<!--CSS stylesheet link-->
<link href="./assets/css/style.css" rel="stylesheet" />
<title>Bottoms Up !</title>
</head>
<body>
<!--Header-->
<header>
<img
src="./assets/images/beer-mug.png"
alt="beer mug"
width="100"
height="100"
/>
<h1 class="title is-1" id="name">BOTTOMS UP</h1>
<h2 class="subtitle is-2" id="motto">"Beer worth Finding"</h2>
</header>
<!--Hero image-->
<div class="hero"></div>
<!--Main Content-->
<main class="columns">
<section id="inputs" class="column is-one-quarter">
<h2 class="filters">Filters</h2>
<br />
<!--User-Input Form Section-->
<form class="form" id="input-form">
<label for="location">Postal Code:</label>
<input
type="text"
id="input-location"
name="location"
placeholder="90210"
/><br />
<label for="type">Brewery Size:</label>
<select name="type" id="input-type">
<option value="any">Any</option>
<option value="micro">Micro-Brewery</option>
<option value="nano">Nano-Brewery</option>
<option value="regional">Regional</option>
<option value="brewpub">Brewpub</option>
<option value="large">Large</option>
<option value="planning">Planning</option>
<option value="bar">Bar</option>
<option value="contract">Contract</option>
<option value="proprietor">Proprietor</option>
<option value="closed">Closed</option>
</select>
<br />
<button class="button is-info is-rounded" id="clear-btn">
Clear
</button>
<button class="button is-info is-rounded" id="submit-btn">
Submit
</button>
</form>
</section>
<!--Results Section-->
<section id="results" class="column is-three-quarters">
<h2 class="results">Results</h2>
<br />
<br />
<table>
<tbody id="repo-table" class="mx-auto text-center"></tbody>
</table>
</section>
</main>
<!--Footer Section-->
<footer class="footer">
<h2>More About the Developers</h2>
<ul id="about_sec">
<li>
<a href="https://github.com/c1flores"> Christian Flores</a>
</li>
<li>
<a href="https://github.com/CArmstrong2">Christopher Goldsmith</a>
</li>
<li>
<a href="https://github.com/LeinadZz">Daniel Gutierrez</a>
</li>
<li>
<a href="https://github.com/Dayian24">Dayian Martinez</a>
</li>
</ul>
<h2 id="memo">Made for Your Taste Buds ❤️</h2>
</footer>
<!--jQuery and Javascript logic links-->
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.1.min.js"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>