This repository has been archived by the owner on May 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasic.html
72 lines (69 loc) · 1.73 KB
/
basic.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
<!DOCTYPE html>
<html>
<head>
<title>Recipe Book</title>
<style>
.button {
background-color: #F3DBA4;
border: none;
color: black;
padding: 12px 24px;
text-align: center;
font-size: 18px;
font-family: Helvetica;
cursor: default;
width: 200px;
margin-top: 8px;
}
.button:hover {
background-color: rgb(231, 193, 139);
}
.center {
margin: 0;
position: absolute;
text-align: center;
top: 50%;
left: 50%;
margin-right: -50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
h1 {
font-size: 128px;
font-family: Verdana;
text-shadow: 2px 2px #ffffff;
}
body {
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body background="images\1.jpg"></body>
<body>
<div class="center">
<h1>RECIPE BOOK</h1>
<br>
<button class="button" onclick="location.href='new_recipe.html'">New Recipe</button>
<br>
<button class="button" onclick="location.href='search.html'">Search for Recipe</button>
<br>
<button class="button" onclick="location.href='random.html'">Random Recipe</button>
<br>
<button class="button" onclick="location.href='browse.html'">Browse Recipes</button>
<br>
<button class="button" id="mealPlanner" onclick="location.href='planner.html'">Meal Planner</button>
<br>
</div>
</body>
<script>
function browseFunction() {
for (let item of iterator1){
console.log(item)
}
}
</script>
<script>
require('./planner.js');
</script>
</html>