-
Notifications
You must be signed in to change notification settings - Fork 0
/
explore.html
54 lines (54 loc) · 2.03 KB
/
explore.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./icon.png" type="image/x-icon">
<link rel="stylesheet" href="./css/explore.css">
<script src="./js/explore.js"></script>
<title>Birthday Form</title>
</head>
<body>
<button class="button" style="vertical-align:right;" ><a href="./index.html"><span style="color:black; opacity: 8em; font-weight: 500; ">Back</span></a>
</button>
<div class="container">
<div class="content">
<div class="image-box">
<img src="./images/explore.svg" class="birthday">
</div>
<form>
<div class="topic" style="text-align: center;"> Whats Your Birthday 🎂 Akan <br>Fill The Form Below</div>
<div class="input-box">
<input type="number" required id="year" required min="1980" max="2000" >
<label>Enter Your Year</label>
</div>
<div class="input-box">
<input type="number" required id="month" required min="1" max="12" >
<label>Enter Your Month</label>
</div>
<div class="input-box">
<input type="number" id="monthday" required min="1" max="31" >
<label>Enter The Day Of Month</label>
</div>
<form class="radio-button">
<input class="genders lebels" type="radio" name="genders" id="rad1" value="Male">
<label class="form-check-label" for="radio">
Male
</label>
<input class="genders labels" type="radio" name="genders" id="radio" value="Female">
<label class="form-check-label" for="radio" >
Female
</label>
<input type="reset" value="reset" class="reset" >
<div class="input-box">
<a href=#result>
<button type="button" name="button" class="submit" onclick="checkDayOfWeek()">Submit</button>
</a>
</div>
</form>
</div>
<h1 id="result" class="names"></h1>
</div>
</body>
</html>