forked from boolean-uk/js-dom-brewery-tours-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
my-visit-list.html
49 lines (49 loc) · 1.64 KB
/
my-visit-list.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>
<!-- EXTENSION 4 -->
<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" />
<link rel="stylesheet" href="styles/reset.css" />
<link rel="stylesheet" href="styles/index.css" />
<link rel="stylesheet" href="styles/pagination.css" />
<script src="global.js" defer></script>
<script src="render-my-list.js" defer></script>
<title>Brewery Tours</title>
</head>
<body>
<header class="main-header">
<section class="select-state-section">
<h2>My Visit List</h2>
</section>
</header>
<main>
<aside class="filters-section">
<aside class="filters-section">
<h2>Filter By:</h2>
<form id="filter-by-type-form" autocompete="off">
<label for="filter-by-type"><h3>Type of Brewery</h3></label>
<select name="filter-by-type" id="filter-by-type">
<option value="">Select a type...</option>
<option value="micro">Micro</option>
<option value="regional">Regional</option>
<option value="brewpub">Brewpub</option>
</select>
</form>
</aside>
</aside>
<h1>List of Breweries</h1>
<article>
<ul id="breweries-list" class="breweries-list">
<!--
For each brewery returned in the search,
add to the list using the HTML provided
in templates/standard-list-items.html
-->
</ul>
</article>
</main>
<!-- <script src="index.js"></script> -->
</body>
</html>