-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideos.html
More file actions
37 lines (34 loc) · 1.08 KB
/
Copy pathvideos.html
File metadata and controls
37 lines (34 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Capybara Video</title>
<link rel="stylesheet" type="text/css" href="videos.css">
<link rel="stylesheet" type="text/css" href="wow.css">
</head>
<body>
<header>
<h1>Capybara Video</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="facts.html">Capybara Facts</a></li>
<li><a href="gallery.html">Capybara Gallery</a></li>
<li><a href="videos.html">Capybara Videos</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="container">
<h2>Watch a Capybara Video</h2>
<video width="640" height="360" controls>
<source src="0928 copy.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</section>
<footer>
<p>© 2023 Capybara World</p>
</footer>
</body>
</html>