-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (85 loc) · 3.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="HTML,CSS,website design, landing page, birds">
<title>Birds of Paradise</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<img class="header-logo" src="Images/logo.png" width="100px" alt="Logo">
<ul class="navbar">
<li><a href="#">Birds</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</header>
<!---------Banner section---------->
<div class="banner">
<div class="content">
<h1>Birds of Paradise</h1>
<p>
The majority of species are found in Papua New Guinea and eastern Australia.
</p>
<a href="Form.html">Sign up</a>
</div>
<div class="content">
<img class="header-image" src="Images/header.jpg" alt="header">
</div>
</div>
<!-----Body content/main section ---->
<div>
<h4>Birds of Paradise</h4>
</div>
<div class="main-content">
<div class="species">
<div>
<img src="Images/Astrapias.jpg" width="130px" alt="Astrapias Bird">
<p>Splendid astrapia</p>
</div>
</div>
<div class="species">
<div>
<img src="Images/Paradigallas.jpg" width="130px" alt="Paradigallas Bird">
<p>paradigallas bird</p>
</div>
</div>
<div class="species">
<div>
<img src="Images/Riflebirds.jpg" width="130px" alt="Riflebird">
<p>Magnificent Riflebird</p>
</div>
</div>
<div class="species">
<div>
<img src="Images/Sickle-tails.jpg" width="130px" alt="Sicklebill bird">
<p>Brown Sicklebill</p>
</div>
</div>
<!------Body content Quote-------->
<div class="quote">
<div>
<quote>
<p class="paragraph">Birds are indicators of the environment. If they are in trouble, we know we'll soon be in trouble.</p>
<p class="Author">- Roger Tory Peterson</p>
</quote>
</div>
</div>
<!------Call to action------>
<div class="call2-action">
<div>
<p class="question">You like this website?</p>
<p class="answer">We are just a call away from developing your own website</p>
</div>
<a href="tel:+260 970108140" target="_blank">
<button>Call us</button>
</a>
</div>
</div>
<!---Footer starts here-->
<footer><p>Copyright © Isaac Kampende 2022</p></footer>
<!---Footer ends here-->
</body>
</html>