-
Notifications
You must be signed in to change notification settings - Fork 0
/
1.html
114 lines (101 loc) · 3.47 KB
/
1.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HR portal</title>
<script src="index.js"></script>
<style>
body {
margin: 0;
padding: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: rgb(154, 192, 236);
}
header {
background-color: red;
color: white;
padding: 2px;
}
h1 {
text-align: center;
}
</style>
</head>
<body>
<h1>DIGITAL LIBRARY</h1>
<nav>
<ul>
<li><a href="#Employee-registration"> Student Registration</a></li>
<li><a href="#Employee-directory"> Student Directory</a></li>
<li><a href="#employe-contact"> Student Contact</a></li>
</ul>
</nav>
<img src="http://res.heraldm.com/content/image/2021/10/21/20211021000828_0.jpg" style="width: 100%;" height="700"
length="300">
<section id="employee-registration">
<h2>Student Registration</h2>
<p>Fill the below form to register as <em>student</em></p><br>
<form>
<label for="name">Name: </label>
<input type="text" placeholder="enter name" id="name"><br><br>
<label for="address">Address: </label>
<input type="text" placeholder="enter address" id="address"><br><br>
<label for="email">E-mail id:</label>
<input type="email" placeholder="enter email" id="email"><br><br>
<label type="password"> Enter Password:</label>
<input type="password" placeholder="enter password" id="passward"><br><br>
<label for="age">Date of birth:</label>
<input type="date" id="age"><br><br>
<label for="role">Course name :</label>
<select id="role">
<option>Aeronautical engineering </option>
<option>Chemical engineering</option>
<option>Mechanical engineering</option>
<option>Computer science and engineering</option>
<option>AIML</option>
</select>
<br><br>
<input type="submit" onClick="return register()"><br><br>
</form>
</section>
<section id="Employee-directory">
<h2>Student Directory</h2>
<p> List of all registered students</p>
<table>
<tr>
<th>Student id </th>
<th>Student name </th>
<th>Student course </th>
</tr>
<tr>
<th>111</th>
<th> Vaishnavi Bhandari </th>
<th>Aeronotical engineer</th>
</tr>
<tr>
<th>222</th>
<th>Vibha Kushwaha</th>
<th>Chemical engineer</th>
</tr>
<tr>
<th>333</th>
<th>Rishabh Chouhan</th>
<th>Software engineer</th>
</tr>
<tr>
<th>444</th>
<th>Shivam Jadham</th>
<th>Cyber Security</th>
</tr>
</table>
</section>
<section id="employe-contact">
<h2> Contact Us</h2>
<p> you can contact us @digitalLibrary.com or visit us at between 9AM-6PM at vijay nagar (dewas)</p><br>
</section>
<footer>
<p>©:2024 company Name</p>
</footer>
</body>
</html>