-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (33 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Animal Trading Cards</title>
<link href="https://fonts.googleapis.com/css?family=Courgette|Gloria+Hallelujah|Josefin+Slab" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Animal Card -->
<div class="animal-card">
<!-- Name -->
<h3>Chiwawa Jealous Dog</h3>
<!-- Image -->
<img src="dog.jpg" alt="Jealous Dog">
<div class="inner">
<!-- Interesting Facts -->
<p class="sub-title">In a study done by scholars at the University of California, it was found that dogs can get jealous if they see their humans displaying affection toward something or someone else!</p>
<!-- List of information -->
<ul>
<li><span>Breed: </span>Chiwawa</li>
<li><span>Gender: </span>Not sure</li>
<li><span>Emojy: </span>Jealous</li>
<li><span>Color: </span>Brown</li>
</ul>
<!-- Description -->
<p class="description">My heart start beating so hard when I hear a dog's barking! I am afraid of dogs, also I know how friendly they are! <br>
I will break my fear of dogs by raising my own dog soon! ♥
</p>
</div>
</div>
</body>
</html>