-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
68 lines (67 loc) · 2.45 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<title>Recipes</title>
</head>
<body>
<link href="app/css/bootstrap.css" rel="stylesheet">
<link href="app/css/style.css" rel="stylesheet">
<link rel='stylesheet' id='prettyphoto-css' href="/app/css/prettyPhoto.css" type='text/css' media='all'>
<link href="app/css/fontello.css" type="text/css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Quattrocento:400,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Patua+One' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<link href="app/css/bootstrap-responsive.css" rel="stylesheet">
<!-- Favicon -->
<link rel="shortcut icon" href="app/img/favicon.ico">
</head>
<body>
<!--******************** NAVBAR ********************-->
<div class="navbar-wrapper">
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<h1 class="brand"><a href="#top">CookBook!</a></h1>
</div>
<!-- /.container -->
</div>
<!-- /.navbar-inner -->
</div>
<!-- /.navbar -->
</div>
<!-- /.navbar-wrapper -->
<div id="top"></div>
<!-- ******************** HeaderWrap ********************-->
<div id="headerwrap">
<header class="clearfix">
<h1 class="title"><span>CookBook!</span> Make delecious recepies.</h1>
<div class="container">
<div class="row">
<div class="span12">
<h2>What are you trying to cook today?</h2>
<input type="text" id='searchKey' placeholder="Recipie Name" class="cform-text" size="40" title="Recipie Name">
<input type="submit" value="Get me.." id='searchButton' class="cform-submit">
</div>
</div>
</div>
</header>
</div>
<section id="team" class="single-page scrollblock">
<div class="container">
<!-- six columns -->
<div class="row" id="serchResult" style="min-height:800px;">
<h1>Search Results</h1>
</div>
<!-- /.row -->
</div>
<!-- /.container -->
</section>
<!-- Insert Our Script -->
<script src='main.js'></script>
</body>
</html>