-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtastings.html
56 lines (56 loc) · 1.81 KB
/
tastings.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
<!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">
<link rel="shortcut icon" type="image.png" href="/assets/favicon.png">
<link rel="stylesheet" href="styles.css">
<script src="tastings.js" defer></script>
<title>Pour Taste</title>
</head>
<body>
<header>
<h1>Pour Taste</h1>
<nav>
<button class="user-page">Account</button>
</nav>
</header>
<main>
<form class="search-tastings">
<label for="search" class="hidden">Search Favorites</label>
<input id="search" name="search" type="text" placeholder="SEARCH FAVS">
</form>
<form class="search-by-rating">
<label for="rating">Rating</label>
<select name="rating" id="rating">
<option>All</option>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
<option>10</option>
</select>
</form>
<form class="search-by-type">
<label for="type">Type</label>
<select name="type" id="type">
<option>All</option>
<option>White</option>
<option>Red</option>
<option>Sparkling</option>
<option>Rose</option>
<option>Dessert</option>
</select>
</form>
<section class="display-tastings"></section>
</main>
<footer class="user-footer">
</footer>
</body>
</html>