-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsearch-results.html
46 lines (40 loc) · 1.86 KB
/
search-results.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
<!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="stylesheet" href="https://unpkg.com/[email protected]/build/pure-min.css"
integrity="sha384-Uu6IeWbM+gzNVXJcM9XV3SohHtmWE+3VGi496jvgX1jyvDTXfdK+rfZc8C1Aehk5" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/grids-responsive-min.css">
<link rel="stylesheet" href="./assets/css/results.css">
<link rel="icon" type="image/png" href="./assets/images/favicon.png">
<title>Search Results</title>
</head>
<body>
<div class="sidebar pure-u-1 pure-u-md-1-4">
<div class="pure-menu pure-g">
<a class="pure-u-1 pure-menu-heading" href="./index.html">Home</a>
<a class="pure-u-1 pure-menu-heading" href="./my-recipes.html">My Recipes</a>
<a class="pure-u-1 pure-menu-heading" id="randomizer" href>Random</a>
</div>
<form id="search-form" class="pure-form pure-form-stacked">
<fieldset>
<input id="search-input" type="text" placeholder="Search Recipes..." />
<select id="search-criteria">
<option value disabled selected>Search by Type</option>
<option value="food">Food</option>
<option value="drink">Drink</option>
</select>
<button id="submit-button" type="submit" class="pure-button">Search</button>
</fieldset>
</form>
</div>
<div class="content pure-u-1 pure-u-md-3-4">
<h2 id="result-text"></h2>
<div id="display-results" class="pure-g"></div>
</div>
<script src="./assets/js/cocktail.js"></script>
<script src="./assets/js/results.js"></script>
</body>
</html>