-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCapybara.html
More file actions
59 lines (51 loc) · 1.83 KB
/
Copy pathCapybara.html
File metadata and controls
59 lines (51 loc) · 1.83 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Capybara World</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to Capybara World</h1>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="#facts">Capybara Facts</a></li>
<li><a href="#gallery">Capybara Gallery</a></li>
<li><a href="#videos">Capybara Videos</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="home">
<h2>About Capybaras</h2>
<p>Capybaras are the world's largest rodents and are known for their friendly and social nature. They are native to South America and are often found near water sources.</p>
</section>
<section id="facts">
<h2>Capybara Facts</h2>
<ul>
<li>Capybaras can weigh up to 150 pounds.</li>
<li>They are excellent swimmers and spend a lot of time in the water.</li>
<li>These herbivores are known for their gentle temperament.</li>
</ul>
</section>
<section id="videos">
<h2>Capybara Videos</h2>
<iframe width="560" height="315" src="0928 copy.mp4" frameborder="0" allowfullscreen></iframe>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>If you have any questions or would like to share your capybara experiences, please feel free to contact us:</p>
<address>
Email: <a href="catlittle021@gmail.com">catlittle021@gmail.com</a><br>
Phone: +66 12 345 6789
</address>
</section>
<footer>
<p>© 2023 Capybara World</p>
</footer>
</body>
</html>
}