forked from kerilp/quick-fix-recipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (44 loc) · 2.18 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.5">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.6/build/pure-min.css"
integrity="sha384-Uu6IeWbM+gzNVXJcM9XV3SohHtmWE+3VGi496jvgX1jyvDTXfdK+rfZc8C1Aehk5" crossorigin="anonymous">
<link rel="stylesheet" href=" ./assets/css/main-css/grids1.css">
<link rel=" stylesheet" href="./assets/css/main-css/pure1.css">
<link rel="stylesheet" href=" ./assets/css/main-css/style1.css">
<link rel="icon" type="image/png" href="./assets/images/favicon.png">
<title>Quick Fix Recipe</title>
</head>
<body>
<div class="header">
<div class="home-menu pure-menu pure-menu-horizontal pure-menu-fixed">
<a class="pure-menu-heading" href="./my-recipes.html">My Recipes</a>
<a class="pure-menu-heading" id="randomizer" href>Randomize</a>
</div>
</div>
<div class="splash-container">
<div class="splash">
<form id="search-form" class="pure-form pure-form-stacked">
<fieldset>
<input id="search-input" type="text" placeholder="Search: Quick Fix Recipe..." />
<select id="search-criteria" class="option">
<option value disabled selected>Search by Type</option>
<option value="food">Food</option>
<option value="drink">Drink</option>
</select>
<button type="submit" class="pure">Submit</button>
</fieldset>
</form>
</div>
</div>
<script src="./assets/js/script.js"></script>
</body>
</html>