-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpanda vault.html
71 lines (69 loc) · 2.59 KB
/
panda vault.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
<!DOCTYPE html>
<html lang="en">
<head>
<title> Panda vault</title>
<link rel="stylesheet" href="style.css">
<link rel ="icon" href="img/icon.png">
<body bgcolor="Black" style= "color: white">
<center><h1>Panda Info🐼</h1>
<img src="img/panda-1.jpg" alt="Photo of panda" width="250">
<figcaption>Panda loves <em>bamboo</em></figcaption>
</center>
<hr>
<section>
<figure>
<h2>Types of panda</h2>
<ol>
<li>Giant pandas</li>
<img src="img/panda-2.jpg">
<li>Red pandas</li>
<img src="img/red panda.jpg" width="200">
</ol>
</figure>
</section>
<section>
<figure>
<h2>Panda Lists</h2>
<h3>Things pandas love:</h3>
<ul>
<img src="img/panda food.jpg" alt="panda with bamboo" width="200">
<li>Bamboo</li>
<li>play</li>
<li>sleep</li>
</ul>
</figure>
</section>
<section>
<figure>
<h3>Things pandas hate:</h3>
<ol>
<img src="img/panda-3.jpg" alt="cute panda">
<li>Disturbance while sleeping</li>
<li>snow leopards</li>
<li>hot weather</li>
</ol>
</figure>
</section>
<h2>Did You Know ? </h2>
<forms>
<fieldset>
<legend>Can Pandas swim ?</legend>
<label><input id="yes" type="radio" name="yes-no"> YES</label>
<label><input id="no" type="radio" name="yes-no" > NO</label>
</fieldset>
<fieldset>
<legend>How many hours they eat a day?</legend>
<label><input id="eat" type="radio" name="eat"> 10-16hrs</label>
<label><input id="eat" type="radio" name="eat" > 8-10hrs</label>
<label><input id="eat" type="radio" name="eat" > 16-20hrs</label>
</fieldset>
<fieldset>
<legend>What kind species are they?</legend>
<label><input id="species" type="radio" name="species"> Herbivores</label>
<label><input id="species" type="radio" name="species" > Carnivores</label>
<label><input id="species" type="radio" name="species" > omnivores</label>
</fieldset>
</forms>
</body>
</head>
</html>