-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
79 lines (57 loc) · 2.97 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
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cart to Kitchen</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap 4.3.1 CDN --------------------------------------------------------------------------------------->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Google Fonts -------------------------------------------------------------------------------------------->
<link href="https://fonts.googleapis.com/css?family=Rock+Salt&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Crimson+Text&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lexend+Exa&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lora&display=swap" rel="stylesheet">
<!-- FONT AWESOME -->
<script src="https://kit.fontawesome.com/f53fc5f70f.js"></script>
<!-- Global CSS -->
<link rel="stylesheet" type="text/css" href="styles/styles.css">
<!-- Landing Page CSS ---------------------------------------------------------------------------------------->
<link rel="stylesheet" type="text/css" href="styles/styles.css">
<link rel="stylesheet" type="text/css" href="listpage/list.css">
<link rel="stylesheet" type="text/css" href="favoritepage/favorite.css">
<link rel="stylesheet" type="text/css" href="recipepage/recipe.css">
<link rel="stylesheet" type="text/css" href="landingpage/index.css">
<!-- Firebase JS SDK ---------------------------------------------------------------------------------------->
<script src="https://www.gstatic.com/firebasejs/6.3.4/firebase-app.js"></script>
<!-- Jquery CDN -->
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<!-- Firebase JS -->
<script src="https://www.gstatic.com/firebasejs/live/3.0/firebase.js"></script>
<!-- Landing Page js -->
<script src="landingpage/index.js" type="text/javascript"></script>
</head>
<body>
<nav class="navbar" id="nav-bar">
<a href="favoritepage/favorite.html" class="fas fa-heart" id="faves-icon"></a>
<a href="index.html" class="text-center" id="logo"> Cart to Kitchen</a>
<a href="listpage/list.html" class="fas fa-bars" id="list-icon"></a>
</nav>
<div class="jumbotron">
<div class="input-group mb-3 justify-content-center" id="search-btn-form">
<div class="input-group-prepend">
<button class="btn btn-outline-secondary" type="button" id="search-button">
<i class="fas fa-search" id="search-icon"></i>
</button>
</div>
<input type="text" class="form-control" id="search-term" placeholder="search for recipes">
</div>
</div>
<div class="container">
</div>
<div class="container recipeDisplay">
</div>
</div>
</body>
</html>