-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathharsh.html
106 lines (98 loc) · 3.52 KB
/
harsh.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Harsh</title>
</head>
<body>
<h1 align="center">Student Registration</h1>
<fieldset >
<legend align="center">Personal Inforamtion</legend>
<form>
<table align="center" cellpadding="10px" >
<tr>
<td>
Name*
</td>
<td>
<input type="text" placeholder="Enter your name" required>
</td>
<td>
Password*
</td>
<td>
<input type="password" placeholder="Enter your password" required>
</td>
</tr>
<tr>
<td>
Email*
</td>
<td colspan="3">
<input type="email" size="81" placeholder="Enter your Email" required>
</td>
</tr>
<tr>
<td>
Mobile number
</td>
<td>
<input type="text" placeholder="Enter your mobile number" pattern="[0-9]{10}">
</td>
<td>
Date of Birth
</td>
<td>
<input type="date" >
</td>
</tr>
<tr>
<td valign="top">
Gender
</td>
<td valign="top">
<input type="radio"/>Male<br/><input type="radio"/>Female
</td>
<td valign="top">
Hobbies
</td>
<td>
<input type="checkbox">Reading<br/><input type="checkbox">Singing<br/><input type="checkbox">Cricket<br/><input type="checkbox">Swimming
</td>
</tr>
<tr>
<td>
CGPA
</td>
<td>
<input type="range" id="range" name="range" value="10" min="0" max="10">10.00 <button>OR</button> <input type="text" size="4" name="range"/>
</td>
</tr>
<tr>
<td>
Insert Resume
</td>
<td>
<input type="file">
</td>
</tr>
<tr>
<td>
LinkedIn URL
</td>
<td colspan="4">
<input type="url" size="81" placeholder="Please enter URL">
</td>
</tr>
<tr >
<td colspan="4" align="center"><input type="submit" value="Submit">
<input type="reset" value="reset" ></td>
</tr>
</table>
</form>
</fieldset>
<br/><br/><br/>
Comments<br><textarea placeholder="Please enter some suggestions" rows="4" cols="204"></textarea>
</body>
</html>