-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (95 loc) · 2.29 KB
/
index.html
File metadata and controls
108 lines (95 loc) · 2.29 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fullstack Zoo</title>
<style> body {
background-color:#98956785
}
h1{
color:dar
}
h2{
color:darkslategrey
}
</style>
</head>
<body>
<main>
<h1> Welcome to Fullstack Zoo <h1>
<section>
<h2>Bears</h2>
<ul>
<li>
Ollie
</li>
<li>
Mona
</li>
</ul>
<img src="https://i.pinimg.com/474x/85/5d/9c/855d9cb30483f784d80f2b6f740966c2.jpg" width="200" height="250">
<br>
<a href="https://freddy-fazbears-pizza.fandom.com/wiki/Freddy_Fazbear" target="_blank">Freddy Fazbear</a>
<!-- too lazy to write "width" and "height", sry xD -->
<section>
<h2>Giraffes</h2>
<ul>
<li>
Frankie
</li>
<li>
Coconat
</li>
</ul>
<img src="https://cms.bbcearth.com/sites/default/files/inline-images/Giraffe-and-calf_Giraffe-Factfile_BBC-Earth-Factfiles.jpg?imwidth=1920" width="400" height="250">
<br>
<a href="https://en.wikipedia.org/wiki/Giraffe">Giraffes-Wiki</a>
<section>
<h2>Lions</h2>
<ul>
<li>
Mella
</li>
<li>
Karl
</li>
</ul>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTAEmOsTghJkOJtJxQhixCy9zLzZM5FR3VPfg&s">
<br>
<a href="https://www.lionsclubs.org/en">Lions club</a>
<section>
<h2>Monkeys</h2>
<ul>
<li>
Cookie
</li>
<li>
Earl
</li>
<li>
Banana Pudding
</li>
</ul>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRRiy_RFJl5SrZQkUX8aQwfgPlOAwI91mBCRQ&s">
<br>
<a href="https://www.britannica.com/animal/monkey">About monkeys</a>
<section>
<h2>Alligators</h2>
<ul>
<li>
Wren
</li>
<li>
Aspen
</li>
<li>
Mika
</li>
</ul>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQfVq7l5zy0_LdtaueKdDnmHPDqbLVBUJqgjQ&s">
<br>
<a href="https://kungfupanda.fandom.com/wiki/Category:Crocodiles">Fandom kung fu panda allifators</a>
</main>
</body>
</html>