-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (34 loc) · 1.33 KB
/
index.html
File metadata and controls
39 lines (34 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Online Application Form</title>
<link rel="stylesheet" href="style.css">
<script src="jquery.min.js"></script>
<script src="script.js" defer></script>
</head>
<body>
<div class="container">
<h2>Online Registration Form</h2>
<form id="regForm" action="display.php" method="POST">
<label>Full Name:</label>
<input type="text" name="fullname" id="fullname" required>
<label>Email:</label>
<input type="email" name="email" id="email" required>
<label>Gender:</label>
<input type="radio" name="gender" value="Male"> Male
<input type="radio" name="gender" value="Female"> Female
<label>Course:</label>
<select name="course" id="course">
<option value="Web Development">Web Development</option>
<option value="Data Science">Data Science</option>
<option value="AI & ML">AI & ML</option>
</select>
<label>Address:</label>
<textarea name="address" id="address" rows="3"></textarea>
<button type="submit" id="submitBtn">Submit</button>
</form>
</div>
</body>
</html>