-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
52 lines (43 loc) · 1.08 KB
/
admin.html
File metadata and controls
52 lines (43 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel = "stylesheet"
type = "text/css"
href = "user.css" />
<link href="https://fonts.googleapis.com/css?family=Poppins:700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
</head>
<body>
<div class="up">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Online Schemes</a></li>
<li><a href="#">Events & Activities </a></li>
<li><a href="#">Related Links</a></li>
<li><a href="#">Contact Us</a></li>
<li class="logout"><a href="index.html">Log-out</a></li>
</ul>
</div>
<br>
<br>
<br>
<br>
<div class="down">
<a href="track.html">
<button type="button" class="btn btn-danger btn-lg">TRACKING</button>
</a>
<br>
<br>
<a href="addcon.html">
<button type="button" class="btn btn-danger btn-lg">ADD CONSIGNMENT DETAILS</button>
</a>
<br>
<br>
<button type="button" class="btn btn-danger btn-lg">PAST CONSIGNMENTS</button>
<br>
<br>
<button type="button" class="btn btn-danger btn-lg">ISSUES</button>
</div>
</body>
</html>