-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (37 loc) · 1.64 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Jeevan" />
<meta name="keywords" content="Student Registration System" />
<link rel="icon" href="favicon.jpg" type="image/jpg" />
<link rel="stylesheet" href="style.css">
<title>Student Registration System</title>
</head>
<body>
<header>
<h1>Student Registration System</h1>
<p>Register student details and manage their records with ease.</p>
<nav>
<button onclick="window.location.href='display.html'" class="pages">View Registered Students</button>
</nav>
</header>
<main>
<form id="registrationForm">
<label for="studentName">Student Name:</label>
<input type="text" id="studentName" placeholder="Enter student name" required>
<label for="studentID">Student ID:</label>
<input type="number" id="studentID" placeholder="Enter student ID" required>
<label for="emailID">Email ID:</label>
<input type="email" id="emailID" placeholder="Enter email ID" required>
<label for="class">Class:</label>
<input type="text" id="class" placeholder="Enter class" required>
<label for="contactNo">Contact Number:</label>
<input type="number" id="contactNo" placeholder="Enter contact number" required>
<button type="submit" class="submit">Register</button>
</form>
</main>
<script src="script.js"></script>
</body>
</html>