-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
81 lines (81 loc) · 2.82 KB
/
Index.html
File metadata and controls
81 lines (81 loc) · 2.82 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
71
72
73
74
75
76
77
78
79
80
81
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="Styles.css">
<title>Log In</title>
</head>
<body>
<header>
<div class="container">
<div id="logo"><img src="Logo1.png"></div>
<div id="brand">
<h1 id="h1">Logistic Management</h1>
</div>
</div>
</header>
<section class="body">
<hr id="h">
<form class="type">
<a target="_blank" href="LoginAdmin.html">
Login as Admin
</a><br>
<br>
<a target="_blank" href="LoginBookinguser.html">
Login as Booking User
</a><br>
<br>
<a target="_blank" href="LoginDispatchUser.html">
Login as Dispatch User
</a><br>
<br>
<a target="_blank" href="LoginMisuser.html">
Login as MIS User
</a><br>
</form>
</section>
<hr>
<footer class="footer">
<div class="container1">
<div class="row1">
<div class="footer-col">
<h4>Logistic Management</h4>
<ul>
<li>175 Forest Street,</li>
<li>Kondhwa, Pune, 411001.</li>
<li>Maharashtra</li>
<li>+91 1234567891</li>
</ul>
</div>
<div class="footer-col">
<h4>Visit Us</h4>
<ul>
<li><a href="#">Maps and Directions</a></li>
<li><a href="#">Plan Your Visit</a></li>
<li><a href="#">Address</a></li>
<li><a href="#">Virtual Tour</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Site Links</h4>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Partners</a></li>
<li><a href="#">Support</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Quick Links</h4>
<ul>
<li><a href="#">Domestic Courier Services</a></li>
<li><a href="#">Full Truckload Services</a></li>
<li><a href="#">Partial Truckload Services</a></li>
<li><a href="#">Supply Chain Logistics</a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>