-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (110 loc) · 7.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Naming</title>
<link rel="stylesheet" href="/vendors/formvalidation/dist/css/formValidation.min.css">
<link href="https://fonts.googleapis.com/css?family=Berkshire+Swash|Monoton&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Monoton&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/js" href="index.js">
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="stylesheet" type="text/css" href="./bootstrap-4.4.1-dist/css/bootstrap.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="raw">
<div class="col-md-10 right"></div>
<div class="col-md-10 intro">
<h1 class="akan-heading">The Akan<span class="heading-name">Naming Website</span></h1>
<h2>Know The Traits Of Your Day-born Friend If He/She Fits You.</h2>
<hr>
<div class="Akan-description">
</em><p class="fs13">A web application that takes a user's birthday and calculates
the day of the week they were born and then depending on their gender outputs their Akan Name.</p>
<em><h2>What are Akan Names?</h2></em>
<p>Akan names are derived from Ghanaian 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.</p>
<div class="card" style="width: 30rem;">
<img src="https://bit.ly/2SM6unp" class="card-img-top" alt="..." height="250">
<div class="card-body">
<p class="card-text">We are a meta-ethnicity living in the southern regions of present-day Ghana, formerly known as the Gold Coast..</p>
</div>
</div>
<p class="fs12">Here are some Ghanaian-names:</p>
<div class="row ghanian-names">
<div class="col-md-4 right">
<h2><i class="fa fa-male"></i> Male</h2>
<ul clas="fs11">
<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>
</div>
<div class="col-md-4 right" >
<h2><i class="fa fa-male"></i> Female</h2>
<ul clas="fs11">
<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>
</div>
</div>
</div>
<h1>Get your Akan Name here;</h1>
<div class="col-md-3 mt30 akan-form">
<h2>Please enter your birthdate here.</h2>
<div class="add-stylist-form">
<form id="form">
<div class="form-group mb19">
<label class="label"><em>-Birthday</em></label>
<div class="input-group mb19">
<span class="input-group-addon"><i class="fa fa-calendar"></i></span>
<input type="date" placeholder="dd/mm/yyyy" id="myBirthDate" class="form-control" autocomplete="off" min="1-1-1800" max="12-31-2020">
</div>
</div>
<div class="form-group mb19">
<label class="label"><em>-Gender</em></label>
<div class="rdio rdio-default fs11">
<input type="radio" name="gender" id="male" value="Male">
<label for="male"> Male</label>
</div>
<div class="rdio rdio-default fs11">
<input type="radio" name="gender" value="Female" id="female">
<label for="female"> Female</label>
</div>
</div>
<button type="submit" onclick="getAkanName(); return false;" class="btn btn-primary btn-xs"><i class="fa fa-search" aria-hidden="true"></i> Submit</button>
<button type="reset" onclick="clearAkanMessage(); return false;" class="btn btn-default btn-xs"><i class="fa fa-times" aria-hidden="true"></i> Cancel</button>
</form>
</div>
<hr>
<div class="your-akan-name">
<p id="message" class="output"></p>
</div>
</div>
<div class="col-md-2 right"></div>
</div>
<footer class="footer">
<em><h1>contacts</h1></em>
<p>Phone No.:+254768643095</p>
<p>EMAIL adress:andersoking77@gmail.com</p>
</footer>
</div>
<script src="index.js"></script>
</body>
</html>