-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexplore.html
More file actions
60 lines (52 loc) · 2.2 KB
/
explore.html
File metadata and controls
60 lines (52 loc) · 2.2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="analyze.css">
<!-- <script src="Apikey.js"></script> -->
<link href="https://fonts.googleapis.com/css2?family=Caveat&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="Favicon.PNG" />
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.2.10/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/8.2.10/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.0/firebase-storage.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.0/firebase-database.js"></script>
<script src="database.js"></script>
<script src="makePost.js"></script>
<script src="explore.js"></script>
<script src="signin.js"></script>
<script src="handleLogin.js"></script>
<link rel="stylesheet" href="explore.css">
<title>Document</title>
</head>
<body>
<div id="mySidenav" class="sidenav">
<a style="cursor: pointer" class="closebtn" onclick="closeNav()">×</a>
<a href="analyze.html">Analyze Recipe</a>
<a href="explore.html">Explore</a>
<div class="login-co">
<a href="signin.html">Login</a>
</div>
</div>
<header>
<nav>
<span class="navItem" style="font-size:30px;cursor:pointer" onclick="openNav()">☰</span>
<a class="navItem" href="index.html">Smart-Meal</a>
</nav>
</header>
<div class="recipe"></div>
<script>
function openNav() {
document.getElementById("mySidenav").style.width = "250px";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
}
</script>
</body>
</html>