-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
72 lines (71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>MealApp</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css"
/>
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<!-- container for the navigation -->
<nav
class="has-text-white p-1 navbar nav-radius is-fixed-top is-align-items-center shadow has-background-primary is-flex is-fluid navbar is-justify-content-space-around"
><div class="is-flex is-align-items-center is-flex-direction-column">
<p class="timecolor timeborder border-radius" id="currentDay"></p>
<img class="navbar-image" src="./assets/images/logo.png"></img>
<p class="timecolor timeborder border-radius" id="currentTime"></p>
</nav>
<!-- container for the meal and coctail section -->
<section
class="hero-body is-justify-content-space-evenly ">
<div class="hero-body is-justify-content-space-evenly is-flex-wrap-wrap is-flex">
<div>
<h3 class="has-text-centered shadow border-radius has-text-weight-bold m-4 is-size-3">Meal</h3>
<a href="./search.html?meal"
><img
class="border-radius imagemain shadow img"
src="./assets/images/Meal.jpg"
alt="Meal"
/></a>
</div>
<div>
<h3 class="has-text-centered shadow border-radius has-text-weight-bold m-4 is-size-3">Cocktail</h3>
<a href="./search.html?cocktail"
><img
class="border-radius imagemain shadow img"
src="./assets/images/Coctail.jpg"
alt="Coctail"
/></a>
</div>
</div>
<h2 class="has-text-centered shadow border-radius has-text-white has-text-weight-bold m-2 p-2 has-background-primary is-size-3">Saved Recipes</h2>
<!-- container for the saved recipes -->
<section id="saveprofiles" class="columns is-align-items-center m-3 is-centered is-multiline">
</section>
</section>
<!-- container for the footer -->
<footer class="height z-index footer-radius position shadow">
<div class="has-text-centered">
<div>
<h6 class="is-size-5 has-text-weight-bold is-">Created By</h6>
</div>
<div>
<a class="button shadow is-primary is-rounded" href="https://github.com/jsen07">Jays</a>
<a class="button shadow is-link is-rounded" href="https://github.com/kristiyantefov">Kris</a>
<a class="button shadow is-info is-rounded" href="https://github.com/Abstynent">Lukasz</a>
</div>
</div>
</footer>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dayjs.min.js"
integrity="sha256-iu/zLUB+QgISXBLCW/mcDi/rnf4m4uEDO0wauy76x7U="
crossorigin="anonymous"
></script>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>