-
Notifications
You must be signed in to change notification settings - Fork 0
/
recipes.html
108 lines (82 loc) · 3.71 KB
/
recipes.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>recipes</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<nav>
<img src="img/The_Foodbud.png" alt="logo">
<div>
<a href="index.html"> Home</a>
</div>
</nav>
<Section class="header-info">
<h1>Our recipes </h1>
<p> Our small database of recipes includes some instruction video's below!</p>
<a href="#recipe">Recipes </a>
</Section>
</header>
<main>
<section class="video-main">
<article id="recipe" class="video-box">
<h2>Tomato soup</h2>
<iframe class="video" src="https://www.youtube.com/embed/szjZ3vqwyXE?si=kAm7ILejPAkMkmE9"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
</article>
<article class="video-box">
<h2>Pokebowl</h2>
<iframe class="video" src="https://www.youtube.com/embed/byQt5Itfig4?si=FTEjDvUH-vwQY9mo"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
</article>
<article class="video-box">
<h2>Pasta pesto</h2>
<iframe class="video" src="https://www.youtube.com/embed/p7edUxCLOGw?si=8Y2kAe9xKAZknTyp"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
</article>
<article class="video-box">
<h2>Spinach hummus wraps</h2>
<iframe class="video" src="https://www.youtube.com/embed/gEuNyqp3IVQ?si=yXXMDZPKUCv7UJjT"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
</article>
<article class="video-box">
<h2>Coconut chickpea curry</h2>
<iframe class="video" src="https://www.youtube.com/embed/5XWzAkAXLcU?si=FRPaHVmaxiekB3Bh"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
</article>
</section>
</main>
<footer>
<section class="left">
<p>Copyright: FoodBud.co </p>
<div class="logos">
<img src="img/linkedin.png" alt="linkedin">
<img src="img/facebook.png" alt="facebook">
<img src="img/instagram.png" alt="instagram">
</div>
</section>
<section class="right">
<p> - For students, by students </p>
<div class="foot-tags">
<a href="#contact"> Contact </a>
<a> Cookies </a>
<a> Privacy</a>
<a> Terms and conditions</a>
</div>
</section>
</footer>
</body>
</html>