-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (114 loc) · 3.89 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Akan Names</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/jquery-ui.min.css" />
<link rel="stylesheet" href="css/jquery-ui.structure.min.css" />
<link rel="stylesheet" href="css/jquery-ui.theme.min.css" />
<!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"> -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css.css"
/>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.bundle.min.js"></script>
</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>
</body>
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/jquery.maskedinput.min.js"></script>
<script src="js/app.js"></script>
<script>
$("document").ready(function () {
$("#datepicker").datepicker({
firstDay: 1,
showButtonPanel: true,
currentText: "Current Date",
closeText: "Close",
constrainInput: true,
defaultDate: 3,
changeMonth: true,
changeYear: true,
dateFormat: "mm/dd/yy",
});
});
</script>
</html>