-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (56 loc) · 1.79 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
56
57
58
<!DOCTYPE html>
<html>
<head>
<title>Catopedia</title>
<header>
<h1>Catopedia</h1>
<p>this is the page that will give details of the cat families</p>
</header>
<nav class="menu">
<ul>
<li><a href="#">home</a></li>
<li><a href="#">about</a></li>
<li><a href="#">contact</a></li>
</ul>
</nav>
</head>
<body>
<header>Cat facts</header>
<main>
<h1>Cat family</h1>
<p>Cat is the closest pet to a human and have won the hearts of many</p>
<p>They are different species of cat that can be found across the world</p>
<h2>siamese cat</h2>
<p>Lifespan: 15-20 years</p>
<h3>Characteristics:</h3>
<ul>
<li>Distinctive color points on the ears, face, paws, and tail</li>
<li>Blue almond-shaped eyes</li>
<li>Short coat with a sleek appearance</li>
</ul>
<p>The Siamese cat is known for its vocal nature and social personality.</p>
<img src="D:\Web Design\Siamese_cat.jpg" alt="Siamese_cat"/>
<h2>Maine Coon Cat</h2>
<p>Lifespan: 15-20 years</p>
<h3>Characteristics:</h3>
<ul>
<li>long- or medium-haired cat</li>
<li>Soft and Silky</li>
<li>eavily furred ears with extra long tufts of fur growing from inside</li>
</ul>
<p>The Maine Coon Cat cat is known for its vocal nature and social personality.</p>
<img src="D:\Web Design\cat2.jpg" alt="Maine Coon Cat"/>
<h2>Persian Cat</h2>
<p>Lifespan: 15-20 years</p>
<h3>Characteristics:</h3>
<ul>
<li>a round face and short muzzle</li>
<li> extremely long and thick coat, short legs, a wide head with ears set </li>
<li>can have virtually any colour or markings</li>
</ul>
<p>The Persian cat is known for its vocal nature and social personality.</p>
<img src="D:\Web Design\cat_3.jpg" alt="Persian Cat"/>
</main>
<footer>Amos Sagit <br>[email protected]</footer>
</body>
</html>