-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
41 lines (39 loc) · 1.18 KB
/
index.php
File metadata and controls
41 lines (39 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RMS</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div id="header">
<div id="logo">
<img src="assets/logo.jpg" height="100px" width="150px"/>
</div>
<div id="logoHeading">
<center>
<h1>Recruitment Management System</h1>
</center>
</div>
</div>
<div id="nav">
<ul id="navMenu">
<li><a href="index.php">Home</a></li>
<li><a href="about.php">AboutUs</a></li>
<li><a href="contact.php">ContactUs</a></li>
<li><a href="login.php">User login</a></li>
<li><a href="admin.php">Admin login</a></li>
</ul>
</div>
<div id="container">
<img src="images/job.jpg" height="100%" width="100%" />
</div>
<div id="footer">
<center>
©2022 All Rights Reserved. Designed by <q>David, Suseendaran, Mugilan </q>
</center>
</div>
</body>
</html>