-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (92 loc) · 3.23 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
<!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="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<title>AKAN NAMES</title>
</head>
<body>
<section>
<h1>KNOW YOUR GHANANIAN (AKAN) NAME</h1>
<div class="desc">
<h3>HELLO! Want to know your Akan name?</h3>
<p>Well, this is a bit of how Akan-names are generated</p>
<p>
Akan names are derived from Ghanian culture. Frequently in Ghana,
children are given their first name as a 'day name' which corresponds
to the day in the week they were born. Here are Ghanian day names.
</p>
</div>
<div class="container">
<h3 class="row" id="title">Male Names</h3>
<ul class="col">
<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>
</ul>
<h3 class="row" id="title">Female Names</h3>
<ul class="col" id="text">
<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>
</ul>
</div>
<button class="popup-btn">KNOW YOUR AKAN NAME</button>
<div class="popup">
<div class="popup-wrap">
<div class="popup-left"></div>
<div class="popup-right">
<p class="close">x</p>
<h2>GET YOUR AKAN NAME</h2>
<form id="myForm">
<label for="year">BIRTH DATE:</label>
<input
type="text"
class="field"
id="datepicker"
placeholder="MM/DD/YYYY"
name="year"
required
/>
<label class="form-check-label">
<input
class="field"
type="radio"
name="gender"
id="female"
checked="checked"
/>
FEMALE
</label>
<label class="form-check-label">
<input class="field" type="radio" name="gender" id="male" />
MALE
</label>
<button type="submit" class="submit-btn" onclick="dayOfBirth()">
GET AKAN NAME
</button>
</form>
<blockquote id="display"></blockquote>
</div>
</div>
</div>
</section>
<p id="display"></p>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>