-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
40 lines (32 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<title>Frigo</title>
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" type="text/css" href="http://csshake.surge.sh/csshake.min.css">
<link href="http://fonts.googleapis.com/css?family=Pacifico" rel="stylesheet">
</head>
<body>
<section class="top">
<nav>
<div id="navContainer">
<a href="index.html" id="logo">frigo.</a>
</div>
</nav>
<div id="formContainer">
<p id="inputFields" class="shake-trigger">
<span id='formTitle' class="shake-constant">Hungry?</span>
<br>
<br>
<input id="ingredientsInput" class="input" placeholder="What's in your fridge?"></input>
<br>
<button type="submit" id="search" onclick="main()" data-loading-text="Loading...">Search</button>
</p>
</div>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://unpkg.com/[email protected]/imagesloaded.pkgd.min.js"></script>
<script src="https://unpkg.com/isotope-layout@3/dist/isotope.pkgd.min.js"></script>
<script src='index.js'></script>
</body>
</html>