-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeal.html
86 lines (85 loc) · 3.75 KB
/
meal.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
80
81
82
83
84
85
86
<html>
<head>
<title>Meal</title>
<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="./styles2.css"/>
</head>
<body class = "backgroundColor">
<!-- This code creates a navigiation bar -->
<div id = "navbarMenu">
<nav class="navbar navbar-light">
<nav class="navbar navbar-expand-lg" id = "mynav">
<a class="navbar-brand" href="#">Menu</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="./index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./recipes.html">Recipes</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./reviews.html">Reviews</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./contact.html">Contact Us</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#">Meal of The Day</a>
</li>
<li><img src="./images/coffee.png" width = 30px height = 30px></li>
</ul>
</div>
</nav>
</nav>
</div>
<!-- END of navigation bar -->
<div class ="bodyMargins">
<br>
<h1 class = "BlogName">A Blend Of Sweet</h1>
<h2 id = "titleOfPage">WHAT'S THE MEAL OF THE DAY?</h2>
<div id = "app">
<h3 id = "date" v-model="getTime"></h3>
<br>
<br>
<hr>
<div class ="textStyle">
<button v-on:click="fetchREST">Generate Meal of the Day</button>
<h2><b>{{ current.strMeal}}</b></h2>
<div><i>{{ current.strCategory }}</i></div>
<div>{{ current.strArea}}</div>
<img v-bind:src="current.strMealThumb">
<div>{{ current.strInstructions }}</div>
<div v-if ="showLinks">
<a v-bind:href="current.strSource">For More Details, Ingredients, and Information Click Here</a>
<br>
<a v-bind:href="current.strYoutube">Youtube Tutorial</a>
</div>
<div>{{ current.idMeall }}</div>
</div>
</div>
<hr>
<div id = "addressbody">
<p>
<em>Address: 300 E, 450 N, Provo, UT 84602</em>
</p>
<a href ="./contact.html"><i>Contact us</i></a>
</div>
</div>
<!-- Github footer-->
<div class = "footer">
<a href = "https://github.com/sben502/creative3"><u>GitHub</u></a>
</div>
</div>
<!-- Interactive java script code for website -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.js"></script>
<script src ="./script.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></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.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
</body>
</html>