-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
70 lines (64 loc) · 1.94 KB
/
admin.php
File metadata and controls
70 lines (64 loc) · 1.94 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
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Homepage</title>
<link rel="stylesheet" href="style5.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.slider {
max-width: 1200px;
height: 550px;
margin: 45px auto;
position: relative;
}
.slide1,.slide2,.slide3,.slide4,.slide5 {
position: absolute;
width: 100%;
height: 100%;
}
.slide1 {
background: url(images/bg/13655.jpg)no-repeat center;
background-size: cover;
animation:fade 8s infinite;
-webkit-animation:fade 8s infinite;
}
.slide2 {
background: url(images/bg/13652.jpg)no-repeat center;
background-size: cover;
animation:fade2 8s infinite;
-webkit-animation:fade2 8s infinite;
}
.slide3 {
background: url(images/bg/13650.jpg)no-repeat center;
background-size: cover;
animation:fade3 8s infinite;
-webkit-animation:fade3 8s infinite;
}
</style>
</head>
<body>
<div class="menubar">
<ul>
<li class="active"><a href="drop-down-menu-homepage.php"><i class="fa fa-home"></i>Home</a></li>
<li><a href="#"><i class="fa fa-motorcycle" aria-hidden="true"></i>Vehicle</a>
<div class="submenu1">
<ul>
<li><a href="crud.php">2-Wheelers</a></li>
<li><a href="crudcar.php">4-Wheelers</a></li>
</ul>
</div>
</li>
<li><a href="buynow_a.php"><i class="fa fa-credit-card-alt" aria-hidden="true"></i>Buy</a></li>
<li><a href="contactus_a.php"><i class="fa fa-phone" aria-hidden="true"></i>Contact Us</a></li>
<li><a href="homepage.php">Log out</a></li>
</ul>
</div>
<br><br><br>
<div class='slider'>
<div class='slide1'></div>
<div class='slide2'></div>
<div class='slide3'></div>
</div>
</body>
</html>