-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfavrecipe.html
94 lines (83 loc) · 2.93 KB
/
favrecipe.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
87
88
89
90
91
92
93
94
<!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">
<!-- Materilize CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!--Fonts, icons, and styling links-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
<!--Application title-->
<title>The Match Made in Heaven</title>
</head>
<body>
<!--Nav-->
<nav>
<div class="nav-wrapper">
<a href="./index.html" class="brand-logo center">Match Made In Heaven</a>
<a href="./favrecipe.html" class="fav right">Favorite Recipe</a>
</div>
</nav>
<!--Hero Section-->
<div class="hero"></div>
<!--Favorite Recipe Results-->
<div class="results container">
<div class="row">
<div class="col s12 m10 l5" id="favCard">
<h5 class="card-title" id="favH1"></h5>
<img id="favImg" src="..."/>
<p class="card-text"></p>
<a href="#" class="btn waves-effect yellow darken-3" id="favLink" name="action" type="submit" target="_blank">Get Recipe Link
<i class="material-icons right">link</i>
</a>
</div>
<!--Empty div-->
<div class="col s2"></div>
<!--Favorite Drink Results-->
<div class="col s12 m10 l5" id="favDrinkCard">
<h5 class="card-drink-title" id="favDrinkH1"></h5>
<img id="favDrinkImg" src="..."/>
<p class="card-drink-text"></p>
</a>
</div>
</div>
</div>
<!--Footer-->
<footer class="page-footer blue-grey darken-3">
<div class="container">
<div class="row">
<div class="col s12">
<h5 class="footer-title">Developed By:</h5>
</div>
<div class="row">
<div class="col l12 m12 s12">
<ul id="credits">
<li><i class="fa-brands fa-github"></i>
<p>Olivia Seonyeong Lee</p>
<p><a href="https://github.com/oliviasylee" target="_blank">github.com/oliviasylee</a></p>
</li>
<li><i class="fa-brands fa-github"></i>
<p>Reginald Prince</p>
<p><a href="https://github.com/Reggiejr44" target="_blank">github.com/Reggiejr44</a></p>
</li>
</ul>
</div>
</div>
</div>
</div>
<!--Copyright-->
<div class="footer-copyright blue-grey darken-3">
<div class="container">
©2022 Copyright reserved to Match made in heaven team
</div>
</div>
</div>
</body>
<!--Linking jquery and script file-->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="assets/javascript/favrecipe.js"></script>
</body>
</html>