-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRegistrationForm.html
More file actions
89 lines (74 loc) · 2.45 KB
/
Copy pathRegistrationForm.html
File metadata and controls
89 lines (74 loc) · 2.45 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
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">
<title>Student Registration</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<form class="form-box">
<h1>Student Registration Form</h1>
<p class="college">XYZ College Of Engineering and Technology</p>
<p class="place">ABC Place, India</p>
<div class="input-group">
<label>Name</label>
<input type="text" placeholder="Enter your name">
</div>
<div class="input-group">
<label>Roll No</label>
<input type="number" placeholder="Enter roll number" required>
</div>
<div class="input-group">
<label>Father's Name</label>
<input type="text" placeholder="Enter father's name">
</div>
<div class="input-group">
<label>Date of Birth</label>
<input type="date">
</div>
<div class="input-group">
<label>Mobile Number</label>
<input type="tel" placeholder="Enter mobile number">
</div>
<div class="input-group">
<label>Email</label>
<input type="email" placeholder="xyz@gmail.com">
</div>
<div class="input-group">
<label>Password</label>
<input type="password" placeholder="Enter password">
</div>
<div class="input-group">
<label>Gender</label>
<div class="radio-group">
<input type="radio" name="gender"> Male
<input type="radio" name="gender"> Female
</div>
</div>
<div class="input-group">
<label>Department</label>
<select>
<option>--Select Department--</option>
<option>CSE</option>
<option>EC</option>
<option>Mechanical</option>
<option>AI/ML</option>
</select>
</div>
<div class="input-group">
<label>Upload Photo</label>
<input type="file">
</div>
<div class="input-group">
<label>Address</label>
<textarea placeholder="Enter permanent address"></textarea>
</div>
<div class="btn-group">
<button type="submit" class="submit-btn">Submit</button>
<button type="reset" class="reset-btn">Reset</button>
</div>
</form>
</div>
</body>
</html>