-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML FORM.html
More file actions
62 lines (52 loc) · 1.58 KB
/
HTML FORM.html
File metadata and controls
62 lines (52 loc) · 1.58 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
<!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>AGENT47-srinjoy</title>
<link rel="style sheet" href="today.css">
</head>
<body>
<form>
<b>
<h1>USER ID FORM</h1>
<br>
<br>
first name : <input type = "text" placeholder="enter your first name">
last name : <input type = "text" placeholder="enter your last name">
<br>
<br>
Mother's name : <input type = "text">
<br>
<br>
Father's name : <input type = "text">
<br>
<br>
email : <input type = "text">
<br>
<br>
Password : <input type = "password">
<br>
<br>
Phone number : <input type = "text">
<br>
<br>
Address : <textarea name="Address" id="Address" cols="30" rows="8"></textarea>
<br>
<br>
I'd verification card : <input type="file">
<br>
<br>
Select Gender : <input type = "radio" name = "gender">Male
<input type = "radio" name = "gender">Female
<input type = "radio" name = "gender">Other
<br>
<br>
<br>
<button type = "SUBMIT" value = "SUBMIT">SUBMIT FORM </button>
<button type = "RESET" value = "RESET"> RESET </button>
</b>
</form>
</body>
</html>