-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform1.html
More file actions
44 lines (38 loc) · 1.11 KB
/
form1.html
File metadata and controls
44 lines (38 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>student registration form</title>
</head>
<body>
<h2>
student registartion form
</h2>
<form action="https:newerp.kluniversity.in">
<h3> personal information</h3>
fullname : <input type="text" required><br>
gender: <input type="radio" name="gn" value="male">male
<input type="radio"name="gn" value="female">female<br>
|email:<input type="text">
<br>contact:<input type="text"><br>
dob:<input type="date"> <br>
Adress:<textarea rows="24">
</textarea><br>
branch:
<select>
<option value="">cse</option>
<option value="">csit</option>
<option value="">eee</option>
<option value="">ece</option>
</select>
<br>
languges known:<input type="checkbox" name="cb">hindi
<input type="checkbox" name="cb">telugu
<input type="checkbox"name="cb">english
<input type="checkbox"name="cb">tamil<br>
upload resume:<input type="file"><br>
<button>submit</button>
</form>
</body>
</html>