-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
135 lines (132 loc) · 4.52 KB
/
about.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<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>GORILLA NAMING</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="./css/about.css" />
</head>
<body>
<header class="header">
<div class="social_media">
<ul class="media-nav d-flex flex-center">
<li class="media_link">
<a href="#"><i class="fa fa-facebook"></i></a>
</li>
<li class="media_link">
<a href="#"><i class="fa fa-twitter"></i></a>
</li>
<li class="media_link"><a href="#">English</a></li>
<li class="media_link"><a href="#">My page</a></li>
<li class="media_link"><a href="#">Logout</a></li>
</ul>
</div>
<nav class="menu">
<div class="burger d-flex flex-center">
<img
src="./images/icons/Union.png"
class="show-menu-btn"
alt="union"
/>
<img
src="./images/icons/Icon@2x.svg"
class="closed-menu-btn"
alt=""
/>
<div class="logo">
<img src="./images/main-logo.png" alt="logo" />
</div>
<ul class="nav_menu d-flex">
<li class="menu_link"><a href="./index.html">Home</a></li>
<li class="menu_link active">
<a href="#About">About us</a>
</li>
<li class="menu_link"><a href="#">Program</a></li>
<li class="menu_link"><a href="#">Team</a></li>
<li class="menu_link"><a href="#">Partners</a></li>
<li class="menu_link active">
<a href="./index.html">Our Gorillas</a>
</li>
</ul>
</div>
</nav>
</header>
<main>
<section id="About" class="home_section">
<div class="home_section_title">
<h2>"Hello! Sharing world"</h2>
<h1>NEED TO VISIT RWANDA? JOIN THE GORILLA NAMING CEREMONY.</h1>
</div>
<article>
<h4>
Kwita Izina is inspired by the ancient Rwandan Tradition of naming a
baby soon after its birth. During this ceremony, infant mountain
gorillas that were born in Rwanda during the previous year receive
their names as well as one newly formed family.
</h4>
</article>
<div class="info">
<p>
Please contact us per Email for more informations about the gorilla
naming ceremony.
</p>
<div class="link">
<a href="#">kwitaizina@volcanoes.rw</a>
</div>
</div>
</section>
<section id="Program" class="overView d-flex flex-center">
<h2>Gorilla Naming Ceremony Overview</h2>
<p>
Kwita Izina is a Ceremony that happens every year, and Hundreds of
people from different locations are welcomed in Rwanda for that
ceremony.
</p>
<div class="logo">
<img src="./images/main-logo.png" alt="" />
</div>
<div class="line"></div>
</section>
<section id="Team" class="gorilla">
<h2>Main Ceremony's Activities.</h2>
<p>
Welcome to the Gorilla Naming Ceremony! Join us to become a part of us
in forming gorilla families by giving name to the born babies. You
will enjoy hiking and playing with gorilla's babies.
</p>
<ul class="image-list d-flex flex-center">
<li>
<img src="images/picture1.jpg" alt="Gorilla image" />
<p class="text">
2020 <br />
Volcanoes Hiking
</p>
<span class="backgrd"></span>
</li>
<li>
<img src="images/picture2.jpg" alt="Gollira image" />
<p class="text">
2021 <br />
Gorilla Families
</p>
<span class="backgrd"></span>
</li>
</ul>
</section>
</main>
<footer id="footer" class="footer_container d-flex">
<div class="logo">
<img class="firelazyloader" src="./images/main-logo.png" alt="logo" />
</div>
<div class="created">
<p>© Copyright 2022 gorilla naming ceremony. all right reserved</p>
</div>
</footer>
<script src="./js/index.js"></script>
</body>
</html>