-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (124 loc) · 3.88 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
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<title>Akan Generator</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="./css/styles.css" type="text/css">
</head>
<body>
<body class= "body">
<div class="container">
<div class ="jumbotron">
<br>
<hr />
<h1>Akan name generator</h1>
<hr />
<img src="./images/cake.jpg" alt="Image of a cake" />
</br>
<hr class="12" />
<p1>This website Calculates the exact day you were born from the users birthday details</p1>
<p2>Most people do know when their birthdays are, but some might not know what day of the week they were born.
Luckily for us, using a very unique method, this website makes it possible to calculate the day of the week from a specific date.
</p2>
</div>
<p3>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.</p3>
<div class="row">
<div class="col-md-8">
<table class="table table-striped">
<caption>
<em>Male and female Akan names.</em>
</caption>
<thead>
<tr>
<td> </td>
<th>Male</th>
<th>Female</th>
</tr>
</thead>
<tbody>
<tr>
<th>Sunday</th>
<td>Kwasi</td>
<td>Akosua</td>
</tr>
<tr>
<th>Monday</th>
<td>Kwadwo</td>
<td>Adwoa</td>
</tr>
<tr>
<th>Tuesday</th>
<td>Kwabena</td>
<td>Abenaa</td>
</tr>
<tr>
<th>Wednesday</th>
<td>Kwaku</td>
<td>Akua</td>
</tr>
<tr>
<th>Thursday</th>
<td>Yaw</td>
<td>Yaa</td>
</tr>
<tr>
<th>Friday</th>
<td>Kofi</td>
<td>Afua</td>
</tr>
<tr>
<th>Saturday</th>
<td>Kwame</td>
<td>Ama</td>
</tr>
</tbody>
</table>
</div>
<div class="col-md-4">
<form action="#" onsubmit="deriveAkanName()">
<input
class="form-control"
type="number"
min="1"
max="31"
name="day"
placeholder="Day"
required
/>
<input
class="form-control"
type="number"
min="1"
max="12"
name="month"
placeholder="Month"
required
/>
<input
class="form-control"
type="number"
min="1920"
max="2019"
name="year"
placeholder="Year"
required
/>
<select class="form-control" id="gender" name="gender">
<option disabled selected>Gender</option>
<option>Male</option>
<option>Female</option>
</select>
<button class="btn btn-block btn-outline-dark" type="submit">
Generate
</button>
</form>
</div>
</div>
<footer>
<p>© Akan Name Genarator by JP</p>
</footer>
<script src="./index.js"></script>
</div>
</body>
</html>