-
Notifications
You must be signed in to change notification settings - Fork 20
/
ASSIGNMENT-3.html
89 lines (86 loc) · 2.86 KB
/
ASSIGNMENT-3.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
<!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> ASSIGNMENT-3 </title>
</head>
<body>
<form>
<center> <h1> REGISTRATION FORM </h1> </center>
<fieldset>
<legend> <b> ENTER THE DETAILS </b></legend>
<label> Name:</label> <input type="text" id="Name" name="Name" placeholder="Enter your full name here" required maxlength="50" >
<br>
<br>
<br>
<label> Email: </label> <input type="email" name="Email" id="Email" placeholder="Enter your email id here" required>
<br>
<br>
<br>
<label> Mobile no.:</label> <input type="tel" id="Mobile no." placeholder="Enter your mobile number here" required>
<br>
<br>
<br>
<label> Year: </label> <input type="text" placeholder="Enter your session here" required>
<br>
<br>
<br>
<label> Session: </label> <input type="datetime-local" required>
<br>
<br>
<br>
<label> Age: </label> <input type="number" placeholder="Enter your age" required min="15" max="100">
<br>
<br>
<br>
<label> Address: </label> <input type="textarea" placeholder="Enter your address here" required maxlength="50">
<br>
<br>
<br>
<label> State: </label> <input type="text" placeholder=" Enter your state here" required>
<br>
<br>
<br>
<FIeldset>
<LEGend> Gender </LEGend>
<label> Male </label>
<input type="radio" name="Gender" id="Male">
<label> Female </label>
<input type="radio" name="Gender" id="Female">
</FIeldset>
<br>
<br>
<br>
<label> Branch: </label>
<select>
<option value=""> ~Select your Branch~ </option>
<option value="CSE"> CSE </option>
<option value="CS"> CS </option>
<option value="CSEAI"> CSEAI </option>
<option value="CSEIT"> CSEIT </option>
<option value="CSEML"> CSEML </option>
<option value="CSEAIML"> CSEAIML </option>
<option value="ECE"> ECE </option>
<option value="IT"> IT </option>
<option value="EN"> EN </option>
<option value="ME"> ME </option>
<option value="CE"> CE </option>
</select>
<br>
<br>
<br>
<label> Create password </label> <input type="password" id="password" placeholder="Create a passsword">
<br>
<br>
<br>
<label> Upload your file here: </label> <input type="file" id="file">
<br>
<br>
<br>
<input type="submit" value="SUBMIT YOUR RESPONSE">
</fieldset>
</form>
</body>
</html>