-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (91 loc) · 4.56 KB
/
Copy pathindex.html
File metadata and controls
96 lines (91 loc) · 4.56 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>AKAN</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&family=STIX+Two+Text&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/styles.css" media="screen">
</head>
<body>
<!--header section-->
<div class="header">
<div class="text">
<h1>AKAN BIRTHCHART</h1>
</div>
</div>
<!--details about akan-->
<div class="text-box">
<div class="row">
<p>Akan names come from a traditional naming system for people from countries such as Togo, Ivory Coast and Ghana<br>A child's Akan name is determined by factors surrounding his or her birth.For example, the day of their birth and their gender.Are excited to know your Akan name ?</p>
</div>
</div>
<!--calling error-->
<div id="result">
<div id="error" class="response">
<h2><b>Please enter your date of birth details</b></h2></div>
<!--form-->
<form>
<div class="form">
<div class="form-col">
<!--adds calendar icon-->
<div class="calendar-col">
<i class="fa fa-calendar"></i>
</div>
<!--date input box-->
<div class="date-col">
<label for="Enter date"><b>Date</b></label>
<input type="number" class="form-control" id="dd" placeholder="Enter date" min="1" max="31" required>
</div>
<!--month input box-->
<div class="month-col">
<label for="mm"><b>Month</b></label>
<select class="form-control" id="mm">
<option>Select Month</option>
<option>January</option>
<option>February</option>
<option>March</option>
<option>April</option>
<option>May</option>
<option>June</option>
<option>July</option>
<option>August</option>
<option>September</option>
<option>October</option>
<option>November</option>
<option>December</option>
</select>
</div>
<!--year input box-->
<div class="year-col">
<label for="yy"><b>Year</b></label>
<input type="number" class="form-control" id="yy" placeholder="Enter year" min="1" max="2021" required>
</div>
<!--gender radios-->
<div class="form-group">
<label class="label">What's your gender?</label>
<div class="radio-default">
<input type="radio" name="gender" id="female" value="Female">
<label for="female"> <b>Female</b></label>
</div>
<div class="radio-default">
<input type="radio" name="gender" id="male" value="Male">
<label for="male"> <b>Male</b></label>
</div>
</div>
<div class="button">
<button type="submit" onclick="readData(); return false;" class="btn btn-primary btn-xs"><i class="fa fa-search" aria-hidden="true"></i> Get Akan Name</button>
</div>
</div>
</div>
</form>
</div>
</div>
</body>
<script src="js/scripts.js"></script>
</html>