-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStudent Registration.html
83 lines (74 loc) · 2.6 KB
/
Student Registration.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Student Registration</title>
<link rel="stylesheet" href="w3.css">
<link rel="stylesheet" href="w3.css" type="text/css" media="screen" />
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 20px;
background: url(https://tinyurl.com/yjwk4dzn)
}
form {
max-width: 600px;
margin: 20px auto;
padding: 20px;
background-color: #f0d4d4;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
label {
display: block;
margin-bottom: 8px;
}
input, select {
width: 100%;
padding: 8px;
margin-bottom: 16px;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
padding: 10px 20px;
background-color: #4caf50;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}
button.cancel {
background-color: #ccc;
}
</style>
</head>
<body>
<form action="#" method="post" id="studentRegistrationForm">
<label for="name">Student Name:</label>
<input type="text" id="name" name="name" required>
<label for="dob">Date of Birth:</label>
<input type="date" id="dob" name="dob" required>
<label for="gender">Gender:</label>
<select id="gender" name="gender" required>
<option value="male">Male</option>
<option value="female">Female</option>
</select>
<label for="Enter your address">Address:</label>
<textarea id="address" name="address" rows="4" required></textarea>
<label for="Enter telephone number">Telephone:</label>
<input type="tel" id="telephone" name="telephone" pattern="[0-9]{3}-[0-9]{2}-[0-9]{3}" required>
<label for="Enter your email">Email Address:</label>
<input type="email" id="email" name="email" required>
<label for="Enter your faculty">Faculty:</label>
<input type="text" id="faculty" name="faculty" required>
<label for="Enter course">Course:</label>
<input type="text" id="course" name="course" required>
<button type="submit">Register</button>
<button type="button" class="cancel">Cancel</button>
</form>
</body>
</html>