-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (73 loc) · 4.59 KB
/
index.html
File metadata and controls
78 lines (73 loc) · 4.59 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="assets/style.css">
<title>Dinner Time</title>
</head>
<body>
<div class="container-fluid">
<!--Header Title Area-->
<div>
<div class=" justify-content-center align-items-center topOfPage">
<h1 class="pageTitle" id="HomePageTitle">Dinner Time</h1>
</div>
<!--Navbar Area-->
<div class="navbar navbar-dark navbar-expand-md " id="navBarStyle">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarToggler"
aria-controls="navbarToggler" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-center navbar-nav" id="navbarToggler">
<a class="nav-item nav-link active" href="#">Home</a>
<a class="nav-item nav-link" href="./pages/meal.html">Meals</a>
<a class="nav-item nav-link" href="./pages/menu.html">Your Menu</a>
<a class="nav-item nav-link" href="./pages/shoppingList.html">Shopping List</a>
</div>
</div>
</div>
<!--Some Stuff to say -->
<div class="row justify-content-center" id="subTitlequestion">
<h3 class="subTitletext text-center">Know whats for dinner this week?</h3>
</div>
<div class="row justify-content-center">
<h4 class="subTitletext text-center">Got everything you need to whip it all up?</h4>
</div>
<div class="row justify-content-center">
<h4 class="subTitletext">Let us help you out!</h4>
</div>
<div class="row justify-content-center">
<ul id="why-your-here">
<li>Select 7 meals, creating your menu for the week. </li>
<li>Menu is complete with ingredients and cooking instructions</li>
<li>Don't see a meal you want? Create your own meal and recipe to add to the selection!</li>
<li>A created menu for the week, including the recipes for each meal will be available to you.</li>
<li>We will also pop up a check list for the ingredients and the amounts you will need for all your meals,</li>
<li>Check off what you currently have in your cabinets, pantry, and/or refrigerator,</li>
<li>What you still need after your pantry check will be put on a shopping list for you!</li>
<li>You can add anything else you need for breakfast lunch dinner or snacks to the list too!</li>
</ul>
</div>
<!--Images for landing page-->
<div id="homeImages" class="row justify-content-center">
<img src="assets/images/startCooking.jpg" class='img-fluid' id="cuttinboard" alt="cuttingboard">
<img src="assets/images/cooking.jpg" class="img-fluid" id="personCooking" alt="cooking">
<img src="assets/images/helpYourself.jpg" class="img-fluid" id="peopleGettingFood" alt="getting food">
</div>
<!--Button to pick your meals-->
<div class="row justify-content-center">
<button id="go-to-meals-button"><a class="nav-link" href="./pages/meal.html">Check out Meals</a></button>
</div>
<!--Footer-->
<footer class="row justify-content-center">
<p class="pr-3 pt-2">Copyright © Amanda Testerman 2021</p>
</footer>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js" integrity="sha512-+NqPlbbtM1QqiK8ZAo4Yrj2c4lNQoGv8P79DPtKzj++l5jnN39rHA/xsqn8zE9l0uSoxaCdrOgFs6yjyfbBxSg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>