-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration_form.html
88 lines (84 loc) · 3.67 KB
/
registration_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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<title>Course Registration Form</title>
</head>
<style>
input, option, label, select{
background-color: lightblue;
}
</style>
<body style="text-align: center;background-color:lightblue">
<img src="National_Institute_of_Technology,_Warangal_logo.png" alt=""> <br> <br>
<h1>NATIONAL INSTITUTE OF TECHNOLOFY WARANGAL</h1>
<h2>(An Institute of National Importance)</h2>
<h3 style="font-size: 27px;">Department of Electronics and Communication Engineering</h3>
<fieldset>
<legend style="font-size: 25px;"><strong>Course Registration From for Btech 3rd year Students</strong></legend>
<form>
<label for="fname">First Name:</label>
<input type="text" name="fname" id="fname">
<br>
<br>
<label for="lname">Last Name:</label>
<input type="text" name="lname" id="lname">
<br> <br>
<label for="rgno" style="padding: 5px;">Reg Number:</label>
<input type=" text" id="rgno">
<label for="rno" style="padding: 5px;">Roll Number:</label> <input type="text" id="rno">
<br><br>
<label for="tele">Mobile Number</label>
<input type="tel" name="tele" id="tele" placeholder="Ex : +91 9010010507">
<br><br>
<label for="eml">Email Id:</label>
<input type="email" name="eml" id="eml" placeholder="[email protected]">
<br><br>
<fieldset>
<legend>Check all the subjects that you want to register for</legend>
<br>
<input type="checkbox" name="CS" id="CS">
<label for="CS">Communication Systems</label>
<br><br>
<input type="checkbox" name="ITC" id="ITC">
<label for="ITC">Information Technology and Coding</label>
<br><br>
<input type="checkbox" name="DN" id="DN">
<label for="DN">Data Networks</label>
<br><br>
<input type="checkbox" name="DSP" id="DSP">
<label for="DSP">Digital Signal Processing</label>
<br><br>
<input type="checkbox" name="ES" id="ES">
<label for="ES">Embedded Systems</label>
<br><br>
<input type="checkbox" name="DSD" id="DSD">
<label for="DSD ">Digital Systems Design</label>
<br><br>
<input type="checkbox" name="MC" id="MC">
<label for="MC">Micro Controllers</label>
<br><br>
<input type="checkbox" name="AP" id="AP">
<label for="AP ">Antenna Propagation</label>
</fieldset>
<br><br>
<label for="oe">Opt for an Open Elective</label>
<select name="oe" id="oe">
<option value="Oops">Oops</option>
<option value="Soft Skills">Soft Skills</option>
<option value="Maths">Maths</option>
<option value="Physics">Physics</option>
<option value="Chemistry">Chemistry</option>
</select>
<br><br>
<p>Select a Department Elective you are interested in</p>
<input type="radio" name="de" id="de1">
<label for="de1">Web Technologies</label>
<input type="radio" name="de" id="de2">
<label for="de2">Low Power VLSI</label>
<br><br>
<input type="Submit" name="smt" id="smt" value="Register">
<input type="Reset">
</form>
</fieldset>
</body>
</html>