-
Notifications
You must be signed in to change notification settings - Fork 1
/
FORM.html
74 lines (66 loc) · 2.21 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
62
63
64
65
66
67
68
69
70
71
72
73
74
<!doctype html>
<html>
<>
<title>form</title>
<link rel="stylesheet" href="index.css">
<style>
textarea{
resize: none;
}
</style>
</head>
<body>
<form name = "registration" method ="POST" action=" home.html" >
<center> <table border="1" style="width:100%" cellpadding="20px" >
<tr><th colspan="2">Registration</th></tr>
<tr><td>enter roll no</td>
<td ><input type ="number"/></td>
</tr>
<tr><td>enter name</td>
<td ><input type ="text"/></td>
</tr>
<tr><td>enter name</td>
<td ><input type ="text"/></td>
</tr>
<tr><td>programing</td>
<td ><input type ="checkbox" />python
<input type ="checkbox" />java
<input type ="radio" />php
<input type ="checkbox" />c</td>
</tr><tr><td>DOB</td>
<td ><input type="date" ></td>
</tr>
<tr>
<td ><input type ="radio" >CSE
<input type ="radio" >IT
<input type ="radio" >CSIT</td>
<td><input type="range" >experience</td>
</tr>
<tr>
<td>
Course:
</td>
<td>
<p>
<select name="access" id="form">
<option >B.Tech</option>
<option >M.Tech</option>
<option >B.A</option>
</select>
</p></td>
</tr
<tr>
<td>
address
</td>
<td>
<textarea rows="10" cols="50"></textarea>
</td>
</tr>
<tr> <td colspan="2"><input type="submit" value="registration"/>
<input type="reset" value ="reset"/></td>
</tr>
</table> </center>
<script src="index.js"></script>
</body>
</html>