-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideos.html
34 lines (30 loc) · 1.26 KB
/
videos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cooking Videos</title>
<link rel="shortcut icon" href="./images/rice.jpg" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Cooking Videos</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="food-table.html">Food Table</a></li>
<li><a href="videos.html">Videos</a></li>
<li><a href="image-gallery.html">Image Gallery</a></li>
<li><a href="order-form.html">Order Form</a></li>
</ul>
</nav>
<div class="content">
<h2>Learn to Cook our special suya rice.</h2>
<p>Watch our collection of cooking videos to learn how to prepare delicious suya rice at home.</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/K4FsT63klJE?si=sB9fpzb24mCvikNm" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</body>
</html>