-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
37 lines (32 loc) · 1.2 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Celiac Tracker</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/skeleton.css" media="all">
</head>
<header>
<div id="space">
</div>
</header>
<body>
<div id="home">
<img id="home_logo" src="images/logo.png">
<h2 id="celiac">Celiac Tracker</h2>
<!-- <img src="images/enter.png"> -->
<input type="text" placeholder="Search for Product" id="user_search">
<input type="submit" id="enter" value="Submit">
<p><a>Learn more about Celiac Disease</a></p>
<div id="buttons" style="margin-top:39px;">
<button id="login">Login</button>
<button id="signup">Sign Up</button>
</div><!--buttons-->
</div><!--home-->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script type="text/javascript" src="js/jsrender.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>