-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
61 lines (58 loc) · 1.36 KB
/
form.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
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up Form</title>
</head>
<body>
<link rel="stylesheet" href="Style.css">
<h1>Sign Up </h1>
<form>
First Name:
<input type="text" name="First Name">
<br>
<br>
Last Name:
<input type="text" name="Last Name">
<br><br>
Date Of Birth:
<input type="date" name="date">
<br><br>
Gender:
<input type="radio" name="Gender" value="male">Male
<input type="radio" name="Gender" value="female">Female
<br><br>
E-Mail:
<input type="text" name="email" >
<br><br>
Phone:
<input type="tel" name="number">
<br><br>
Address:
<input type="text" name="Address">
<br>
<br>
Stream:
<input list="Stream" name="Stream">
<datalist id="Stream">
<option value="Science">Science</option>
<option value="Commerce">Commerce</option>
<option value="Arts">Arts</option>
</datalist>
<br><br>
Password:
<input type="password" name="password">
<br><br>
Confirm Password:
<input type="password">
<br><br>Passport Size Photo:
<input type="file" >
<br><br>
<input type="checkbox" name="condition"> I agree to all the Term & Conditions*
<br><br>
<input type="submit">
<input type="reset">
</form>
</body>
</html>