-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (35 loc) · 1.2 KB
/
index.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
<!DOCtype html>
<html lang="en">
<link rel="stylesheet" href="index.css">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tribute Page</title>
</head>
<div id="main">
<div id="title">
<h1>Tribute to Pandas</h1>
<p>Pandas are very cute animals</p>
</div>
<div id="img-div">
<img id="image" src=https://cdn.creatureandcoagency.com/uploads/2014/04/Panda-Facts-1-1.jpg>
<div id="img-caption"><p>A picture of a cute panda</p></div>
</div>
<div id="tribute-info">
<p>Panda Trivia</p>
<ul>
<li>They love Bamboo</li>
<li>Pandas will abandon their children if they have twins</li>
<li>Eating and sleeping make up pandas' daily life</li>
</ul>
</div>
<div id="footer">
<p>Click Here to Learn more about Pandas <a id="tribute-link" href="https://en.wikipedia.org/wiki/Giant_panda" target="_blank">this website.</a></p>
</div>
</div>
</div>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</body>
</body>
</html>