-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (90 loc) · 2.78 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
95
96
97
98
<!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" />
<link rel="stylesheet" href="styles.css" />
<!--==================== The Font Awesome Link ====================-->
<script src="https://kit.fontawesome.com/a9bfbaa313.js" crossorigin="anonymous"></script>
<title>Akan Names</title>
</head>
<body>
<!--==================== The Header Section ====================-->
<div id="topp" class="top">
<ul>
<li>Welcome</li>
<li><a href="#midd">Check Birthday</a></li>
</ul>
<p>
Hi user, wan't to find you Akan name. You are in the right place. <br />
In the form field found below, simply input your Date Of Birth(D.O.B)
and gender. <br />
Click the submissiom button and you will get to know your name right
away.
</p>
<div class="names-list">
<div>
<h2>Male</h2>
<p>
<ol>
<li>Sunday: Kwasi</li>
<li>Monday: Kwadwo</li>
<li>Tuesday: Kwabena</li>
<li>Wednesday: Kwaku</li>
<li>Thursday: Yaw</li>
<li>Friday: Kofi</li>
<li>Saturday: Kwame</li>
</ol>
</p>
</div>
<div>
<h2>Female</h2>
<p>
<ol>
<li>Sunday: Akosua</li>
<li>Monday: Adwoa</li>
<li>Tuesday: Abenaa</li>
<li>Wednesday: Akua</li>
<li>Thursday: Yaa</li>
<li>Friday: Afua</li>
<li>Saturday: Ama</li>
</ol>
</p>
</div>
</div>
</div>
<!--==================== The Middle Section ====================-->
<form id="midd" class="middle">
<div class="form">
<div class="form1">
<label><strong>Enter your Date Of Birth</strong></label>
<input type="date" id="dob"/>
</div>
<div class="select">
<label><strong>Choose your Gender</strong></label>
<select id="gender">
<option>Enter your Gender</option>
<option>Male</option>
<option>Female</option>
</select>
</div>
</div>
<button onclick="akanNames()" type="button">Find Out</button>
<h3 id="display"></h3>
</form>
<!--==================== The Footer Section ====================-->
<footer>
<div class="move-up">
<a href="#topp"><i class="fas fa-arrow-circle-up fa-2x"></i></a>
</div>
<div class="bottom">
<p>
©2021 Designed By Samuel Muriuki
</p>
</div>
</footer>
<!--==================== Linking The JavaScript File ====================-->
<script src="script.js"></script>
</body>
</html>