-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (29 loc) · 1.07 KB
/
Copy pathindex.html
File metadata and controls
34 lines (29 loc) · 1.07 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
<!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="shortcut icon" href="assets/images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles/styles.css">
<script src="src/script.js"></script>
</head>
<body>
<div class="container">
<h1 style="color: red;">Akan Name Generator</h1>
<form id="name-form">
<label for="birthdate">Enter your birthdate:</label>
<input type="date" id="birthdate" required>
<label for="gender">Select your gender:</label>
<select id="gender" required>
<option value="">--Select Gender--</option>
<option value="male">Male</option>
<option value="female">Female</option>
</select>
<button type="submit">Generate Akan Name</button></h2>
</form>
<div id="result"></div>
</div>
<h2 style="color: red;">
</body>
</html>