-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (94 loc) · 4.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>
<h1>Ghanian Akan Name Generator</h1>
</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css"
integrity="sha384-zCbKRCUGaJDkqS1kPbPd7TveP5iyJE0EjAuZQTgFLD2ylzuqKfdKlfG/eSrtxUkn" crossorigin="anonymous">
<link href="./index.css" rel='stylesheet' type="text/css">
<script type="text/javascript" src="./index.js"></script>
</head>
<body>
<script src="./index.js"></script>
<div class="container">
<div class="jumbotron">
<h1>What's my Akan Name?</h1>
<h2>
<p>If you were born in Ghana, what would your Akan name be? Simply enter your birthday and gender below, and
get to know your Akan name now.</p>
</h2>
</div>
<div class="card">
<div class="card-body">
<h2>Ghanian Akan Name Generator</h2>
<p>
<h3> This web application allows you to input your birthday and calculates the day of the week you were
born,then depending on your gender outputs your Ghanian Akan Name </h3>
</p>
</div>
</div>
<br>
<br>
<div class="card">
<div class="card-body">
<h2> Ghanian Akan Name History </h2>
<p>
<h3> <u>"Akan"</u> names are derived from Ghanian culture. Frequently in Ghana, children are
given their first name as a 'dayname' which corresponds to the day in the week they were
born. </h3>
</p>
</div>
</div>
</div>
<form id="AkanNameGeneratorForm" method="post" onsubmit="submitFunction(generateAkan)">
<div class="form-group row">
<label for="Year" class="col-m-2 col-form-label">Year Of Birth</label>
<div class="col-md-5">
<input type="number" class="form-control" id="Year" min="1900" max="2100" required placeholder="e.g: 1978">
</div>
</div>
<div class="form-group row">
<label for="Month" class="col-m-2 col-form-label">Month</label>
<div class="col-md-5">
<input type="number" class="form-control" id="Month" min="1" max="12" required placeholder="e.g: May=5">
</div>
</div>
<div class="form-group row">
<label for="day" class="col-m-2 col-form-label">Day</label>
<div class="col-md-5">
<input type="number" class="form-control" id="Day" min="1" max="31" required placeholder="e.g: 9">
</div>
</div>
<fieldset class="form-group row">
</label>Select Gender </label>
<br>
<div class="radio">
<label>
<input type="radio" name="Gender" value="Female" checked>Female
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="Gender" value="Male" checked>Male
</label>
</div>
<div class="form-check __web-inspector-hide-shortcut__">
</div>
</fieldset>
<div class="form-group row">
<div class="col-md-10" >
<button onclick="generateAkan()" type="button" id="Submit"
class="btn-primary">Genarate Akan Name</button>
</div>
</form>
</div>
</div>
</div>
</form>
</form>
</div>
</body>
</html>