-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.php
36 lines (36 loc) · 982 Bytes
/
homepage.php
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Homepage</title>
<link rel="stylesheet" href="style2.css">
<style>
body{
background: url(images/bg/bg1.jpg);
background-size: cover;
}
</style>
</head>
<body>
<header>
<div class="navbar">
<div class="logo">
<img src="logo.jpg" alt="">
</div>
<ul >
<li id="active"><a href="homepage.php">Home</a></li>
<li id="active"><a href="displaymsg.php">Services</a></li>
<li id="active"><a href="displaymsg.php">About</a></li>
<li id="active"><a href="displaymsg.php">Contact-Us</a></li>
</ul>
</div>
<div class="title">
<h1>Vehicle Management System</h1>
</div>
<div class="btn">
<a href="login.php" id="login">Login</a>
<a href="register.php" id="reg">Register</a>
</div>
</header>
</body>
</html>