-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (48 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Akan Name Generator</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
<style>
body {
background: linear-gradient(135deg, #2980b9, #6dd5fa);
}
.generator-container {
max-width: 600px;
margin: 0 auto;
padding: 30px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
text-align: center;
}
.result-container {
margin-top: 20px;
font-size: 1.2rem;
}
</style>
</head>
<body>
<div class="container py-5">
<div class="generator-container">
<h1 class="mb-4">Akan Name Generator</h1>
<div class="mb-3">
<label for="dob" class="form-label">Date of Birth:</label>
<input type="date" id="dob" class="form-control">
</div>
<div class="mb-3">
<label for="gender" class="form-label">Gender:</label>
<select id="gender" class="form-select">
<option value="male">Male</option>
<option value="female">Female</option>
</select>
</div>
<button id="generateBtn" class="btn btn-primary">Generate Akan Name</button>
<div id="result" class="result-container"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>