-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcar.php
More file actions
41 lines (39 loc) · 1016 Bytes
/
car.php
File metadata and controls
41 lines (39 loc) · 1016 Bytes
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>
<head>
<style>
a:link, a:visited {
background-color: #f44336;
color: white;
padding: 50px 200px;
font-size: 50px;
text-align: center;
text-decoration: none;
display: inline-block;
}
/* Header and footer styles */
header, footer {
background-color: green;
color: white;
padding: 10px;
text-align: center;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>JATRA.com</h1>
</div>
</header>
<div>
<a href="admin1.php">Insert Car</a>
<br>
<br>
<a href="admin1show.php">Show Car</a>
</div>
<footer>
<p>© 2023 JATRA.com</p>
</footer>
</body>
</html>