-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
28 lines (27 loc) · 870 Bytes
/
main.html
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
<!DOCTYPE html>
<html>
<head>
<title>ABC Dispatcher</title>
<link rel='stylesheet' type='text/css' href='main.css' />
</head>
<body>
<div class="topnav">
<a class="active" href="./main.html">Home</a>
<a href="./driver.html">Driver</a>
<a href="./truck.html">Truck</a>
<a href="./inspection.html">Inspection</a>
<a href="./owner.html">Owner</a>
<a href="./warehouse.html">Warehouse</a>
<a href="./delivery.html">Delivery</a>
</div>
<div class="main">
<!--Free image from pexels.com -->
<img src="./truck1.jpeg" alt="Truck in mountains" id="truck1">
<div class="centered">ABC Dispatcher Company</div>
</div>
<footer>
<h3>Address: 2123 Scenic Way Philo, IL 61864</h3>
<h3>Phone Number: 1-800-684-7382</h3>
</footer>
</body>
</html>