-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.85 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
<!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>Akan Names</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="hero-section">
<h1>MY <span style="color: white;"><br>AKAN NAME</span></h1>
<div class="maincont">
<div class="cont1">
<h2><span style="color: #008F6A;">What is an Akan Name?</span></h2>
<hr>
<p>Akan names are derived from Ghanian culture.The Akan people of Ghana frequently name their children after the day of the week they were born and the order in which they were born. <br>These "day names" have further meanings concerning the soul and character of the person.Most Ghanaians have at least one name from this system, even if they also have an English or Christian name. Notable figures with day names include Ghana's first president Kwame Nkrumah and former United Nations Secretary-General Kofi Annan.</p>
</div>
<div class="cont2">
<form>
<label for="date">Birthdate:</label>
<input type="date" id="birthdate" name="birthdate">
<label for="gender">Gender:</label>
<select id="gender" name="gender">
<option value="gender type">Select Gender</option>
<option value="male">Male</option>
<option value="female">Female</option>
</select>
<input type="submit" id="btn" value="Check your Akan name out">
</form>
<p class="output"></p>
</div>
</div>
</div>
<script src="ice.js"></script>
</body>
</html>