-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (43 loc) · 1.39 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
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<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>Document</title>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<form>
<input type="search" name="search" placeholder="Search query">
</form>
<hr>
<section>
<p>My favorite animals:</p>
<div class="favorites">
<div>Pig</div>
<div>Gazelle</div>
<div>Llama</div>
<div>Majestic moose</div>
<div>Hedgehog</div>
</div>
</section>
<hr>
<section class="preview">
<div class="animal-list">
<h1>Animal summaries</h1>
<p>The following list of animals can be clicked to display a description of that animal.</p>
<ul>
<li tabindex="0" data-description="A type of wild mountain goat, with large recurved horns, found in Eurasia, North Africa, and East Africa.">Ibex</li>
<li tabindex="0" data-description="A medium-sized manrine mammal, similar to a manatee, but with a Dolphin-like tail.">Dugong</li>
<li tabindex="0" data-description="A rare marsupial, which looks rather like a tiny kangaroo, measuring around 50 to 75 centimeters.">Quokka</li>
</ul>
</div>
<div class="animal-description">
<h2></h2>
<p></p>
</div>
</section>
</body>
</html>