-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtracking.html
More file actions
78 lines (75 loc) · 2.76 KB
/
tracking.html
File metadata and controls
78 lines (75 loc) · 2.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tracking</title>
<link rel="stylesheet" href="./styles/base.css" />
<link rel="stylesheet" href="./styles/layout.css" />
<link rel="stylesheet" href="./styles/header.css" />
<link rel="stylesheet" href="./styles/menu.css" />
<link rel="stylesheet" href="./styles/main.css" />
<link rel="stylesheet" href="./styles/footer.css" />
<link rel="stylesheet" href="./styles/tracking/tracking_layout.css" />
<link rel="stylesheet" href=".//styles/tracking/tracking_main.css" />
<link rel="icon" href="./styles/assets/box-solid.svg" />
</head>
<body>
<div class="container">
<header>
<div class="box header-content">
<a href="./index.html" class="header-link">
<div class="logo_name">
<img
src="./styles/assets/logo.png"
alt="Fairy Delivery Logo"
class="logo"
/>
<h1>Fairy Delivery</h1>
</div>
</a>
</div>
</header>
<nav class="box">
<ul class="menu">
<li><a href="./delivery.html">Delivery</a></li>
<li><a href="./tracking.html">Tracking</a></li>
<li><a href="./cost.html">Cost</a></li>
<li><a href="./about.html">About Us</a></li>
</ul>
</nav>
<main class="box main-content">
<section class="main-content">
<div class="transparent-box">
<div class ="box" id="input-block">
<h2>Track Your Parcel</h2>
<label for="delivery-code">Enter Delivery Code:</label>
<input type="text" id="delivery-code" placeholder="E.g., D123" />
<button id="search-button">Search</button>
</div>
<div class ="box" id="output-block">
<h2>Parcel Information</h2>
<p id="parcel-info">Enter a delivery code to see details.</p>
</div>
</div>
</section>
</main>
<footer class="box footer">
<div class="socials">
<a href="#"
><img
src="./styles/assets/facebook-brands-solid.svg"
alt="Facebook"
/></a>
<a href="#"
><img src="./styles/assets/discord-brands-solid.svg" alt="Discord"
/></a>
<a href="#"
><img src="./styles/assets/user-solid.svg" alt="Discord"
/></a>
</div>
<p>Copyright © Fairy Delivery</p>
</footer>
<script type="module" src="./scripts/tracking.js" defer></script>
</body>
</html>