-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideos.html
More file actions
41 lines (37 loc) · 1.59 KB
/
videos.html
File metadata and controls
41 lines (37 loc) · 1.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>links</title>
</head>
<body>
<div class="container">
<div class="header">
<img src="images/food image 2.jpg" alt="">
<h3>Delicia Tasty<br>Foods and Bakery</h3>
</div>
<div class="nav">
<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">Video</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="order_form.html">Order</a></li>
</ul>
</nav>
</div>
<h3 class="page_heading">videos</h3>
<div class="vid">
<video width="320" height="240" controls muted>
<source src="video/How To Make Weather App Using JavaScript Step By Step Explained.mp4" type="video/mp4">
<p>Your browser doesnt support the video tag</p>
</video>
<video width="320" height="240" controls muted>
<source src="video/How To Make Weather App Using JavaScript Step By Step Explained.mp4" type="video/mp4">
<p>Your browser doesnt support the video tag</p>
</video>
</div>
</div>