-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
189 lines (179 loc) · 5.67 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" href="css/style.css" />
<script src="js/scroll_reveal/scrollreveal.min.js"></script>
<title>Akan | Naming</title>
</head>
<body>
<!--navbar-->
<nav class="navbar navbar-expand-md navbar-light bg-light fixed-top">
<a class="navbar-brand" href="#">HI, WELCOME TO AKAN...</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarsExampleDefault"
aria-controls="navbarsExampleDefault"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav ml-auto mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#"
>Home <span class="sr-only">(current)</span></a
>
</li>
<li class="nav-item active">
<a class="nav-link" href="#About">About Us</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#footer-contact">Contacts</a>
</li>
</ul>
</div>
</nav>
<!--main section-->
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="card div" style="width: 550px;">
<div class="card-body">
<p class="card-text">
<b>Did you know that</b> Ghanaian names (or Personal names in Ghana)
consists of several given names and surnames based on the language of
ethnic groups in Ghana including Akan. Frequently, children are given a
"day name" which corresponds to the day in the week they were born.
These day names have further meanings concerning the soul and character
of the person. Middle names have considerably more variety and can refer
to their birth order, twin status, or an ancestor's middle name. These
web appliaction helps one to be able to get to know his/her according
to the day they were born.its useful since one is able to identify their
ancestral origin fast. <br />
<br />
</p>
</div>
</div>
<!--the carousel-->
<div class="slider">
<div class="slide current">
<div class="content">
<h1>Our Culture</h1>
</div>
</div>
<div class="slide">
<div class="content">
<h1>Our Flag</h1>
</div>
</div>
</div>
<div class="buttons">
<button id="prev">prev</button>
<button id="next">next</button>
</div>
</div>
<div class="col-md-3"></div>
<div class="col-md-5">
<form class="myform" method="GET" onsubmit="getAkanName()">
<label for="year-of-birth">
Year:
<input
id="year-input"
type="number"
name="year-of-birth"
placeholder="YYYY"
value=""
required
min="1900"
max="2020"
/>
</label>
<label for="month-of-birth">
Month:
<input
id="month-input"
type="number"
name="month-of-birth"
placeholder="MM"
value=""
required
min="1"
max="12"
/>
</label>
<label for="day-of-birth">
Day:
<input
id="day-input"
type="number"
name="day-of-birth"
placeholder="DD"
value=""
required
min="1"
max="31"
/>
</label>
<br />
<label for="gender">
<div id="gender ">
<p>GENDER:</p>
Male
<input
id="male-input"
type="radio"
name="gender"
value="male"
required
/>
Female
<input
id="female-input"
type="radio"
name="gender"
value="female"
required
/>
</div>
</label>
<br /><br />
<input id="result" type="submit" name="" value="Submit" />
<br /><br />
</form>
<form onsubmit="clearInput()">
<input class="clear" type="submit" value="Clear input" />
</form>
</div>
</div>
</div>
<script>
window.sr = ScrollReveal();
sr.reveal(".navbar, .navbar-nav", {
duration: 3000,
origin: "bottom",
distance: "100px",
});
sr.reveal(".div", {
duration: 3000,
origin: "left",
distance: "100px",
});
sr.reveal(".slider", {
duration: 3000,
origin: "left",
distance: "100px",
});
</script>
<script src="js/slide.js"></script>
<script src="js/main.js"></script>
<footer>
<p id="rights"> copyright(c)Balvine mbari@2020</p>
</footer>
</body>
</html>