-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (105 loc) · 3.53 KB
/
index.html
File metadata and controls
116 lines (105 loc) · 3.53 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<title>SendIT | Courier Services | Nigeria</title>
<meta charset="utf-8" />
<!-- Set the viewport width to device width for mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Included CSS Files -->
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" href="css/pagesStyle.css" type="text/css">
</head>
<body>
<header>
<nav class="sit-nav">
<ul class="sub-nav">
<li id="admin-page-id"><a href="adminPage.html">Admin Page</a></li>
<li><a href="signup.html">Sign Up</a></li>
<li><a href="signin.html">Sign In</a></li>
<li>
<form method="POST" action="" class="search" id="search">
<input type="text" placeholder="Search..." />
<button type="submit" class="searchBtn" >Search
</button>
</form>
</li>
</ul>
</nav>
<a href="index.html" class="header-brand"><img src="images/sendItLogo.png" alt="SendIT"></a>
<nav class="sit-nav2">
<ul class="main-nav">
<li class="active"><a href="index.html">HOME</a></li>
<li><a href="parcels.html">PARCELS</a></li>
<li><a href="index.html#t-number">TRACKING</a></li>
<li><a href="contactus.html">CONTACT</a></li>
</ul>
</nav>
</header>
<main id ="content">
<section class="index-banner">
<div class="vertical-center">
<h1>Welcome To SendIT</h1>
<div class="button">
<a href="parcels.html" class="btn parcelsBtn">Parcels</a>
<a href="index.html#t-number" class="btn trackingBtn">Tracking</a>
</div>
</div>
</section>
<div class="wraper">
<section class="index-track-box">
<div class="track-box">
<br><h3>Track Order</h3><br>
<form method="POST" action="#" onsubmit="return trackPage()">
<p>Tracking Number</p>
<input id="t-number" type="text" name="" placeholder="Enter Tracking Number"><br>
<input id="submit" type="submit" name="" value="Track"><br><br>
<label>Please note: your tracking number can be found in the confirmation email sent to you on placing your order.</label>
</form>
</div>
</section>
<section class="index-about">
<div class="index-box">
<h3>About SendIT</h3>
<p>SendIT is a courier service that helps users deliver parcels to different destinations. SendIT provides courier quotes based on weight categories. </p>
</div>
</section>
<section class="image2-box">
<div class="track-image">
<img src="images/track-package.jpg" alt="track-package image">
</div>
</section>
<section class="image1-box">
<div class="parcels-box">
<img src="images/parcel.jpg" alt="parcel image">
</div>
</section>
</div>
</main>
<footer>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="parcels.html">PARCELS</a></li>
<li><a href="index.html#t-number">TRACKING</a></li>
<li><a href="contactus.html">CONTACT</a></li>
</ul>
<div class="footer-sm">
<a href="#">
<img src="images/youtube-logo.png" alt="youtube icon">
</a>
<a href="#">
<img src="images/facebook-logo.png" alt="facebook icon">
</a>
<a href="#">
<img src="images/twitter-logo.png" alt="twitter icon">
</a>
</div>
<section class="footer-bottom">
<div>
<p>Copyright © SendIT 2018</p>
</div>
</section>
</footer>
<!-- Scripts -->
<script src="scripts/validators.js"></script>
</body>
</html>