-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (78 loc) · 2.69 KB
/
index.html
File metadata and controls
88 lines (78 loc) · 2.69 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
<!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">
<title>Registration Form</title>
<style>
* {
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 2vh;
}
h1 {
font-size: 5vh;
}
body {
background-image: linear-gradient(90deg, rgba(0, 247, 255, 0.941), rgba(0, 85, 128, 0.727));
}
input {
border-radius: 2vh;
padding-left: 2vh;
}
</style>
</head>
<body>
<center>
<h1>Registration Form</h1>
</center>
<form action="./Thanks.html">
<table align="center" width="600" cellpadding="2" cellspacing="2">
<tr>
<td>First Name</td>
<td><input required type="text" name="" id="" placeholder="First Name"></td>
</tr>
<tr>
<td>Last Name</td>
<td><input required type="text" name="" id="" placeholder="Last Name"></td>
</tr>
<tr>
<td>Nick Name</td>
<td><input required type="text" name="" id="" placeholder="Nick Name"></td>
</tr>
<tr>
<td>Email Address</td>
<td><input required type="email" name="" id="" placeholder="Email Address"></td>
</tr>
<tr>
<td>Password</td>
<td><input required type="password" name="" id="" placeholder="Password"></td>
</tr>
<tr>
<td>Date of Birth</td>
<td><input required type="date" name="" id=""></td>
</tr>
<tr>
<td>Gender</td>
<td>
<label for="M"><input type="radio" name="Gender" id="M">Male</label>
<label for="F"><input type="radio" name="Gender" id="F">Female</label>
<label for="O"><input type="radio" name="Gender" id="O">Other</label>
</td>
</tr>
<tr>
<td>Contact Number</td>
<td><input required type="number" name="" id="" placeholder="Contact Number"></td>
</tr>
<tr>
<td>Address</td>
<td><textarea required name="" id="" cols="20" rows="4" placeholder="Address"></textarea></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="" id=""> <input type="reset" name="" id=""></td>
</tr>
</form>
</table>
</body>
</html>