-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (51 loc) · 1.66 KB
/
index.html
File metadata and controls
55 lines (51 loc) · 1.66 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
<html>
<head>
<title>A logistics Website</title>
</head>
<header>
<nav>
<a href="/">
<img src="images/logo.jpg" alt="logo">
</a>
<a href="#service">Services</a>
<a href="#about">About Us</a>
<a href="#contact-us">Contact Us</a>
</nav>
</header>
<body>
<section id="about" class="about">
<div class="image">
<h1>About Section</h1>
<!-- this is section for the about. Group 1 is to develop the code -->
<!-- for the section. -->
</div>
</section>
<section id="service" class="service">
<h1>Services Section</h1>
<!-- this is section for the service. Group 2 is to develop the code -->
<!-- for the section. -->
</section>
<section id="contact-us" class="contact-us">
<h1>Contact Us Section</h1>
</li>
<li>
<i class="fa fa-phone"></i>
<p>
<span class="heading">Call Us</span>
</p>
<a href="tel:2348085011880">Call (234)8085011880</a>
</li>
<li class="last">
<i class="fa fa-envelope"></i>
<p>
<span class="heading">Email Us</span>
<a href="mailto:[email protected]">Send Email</a>
</p>
<!-- this is section for the contact-us. Group 3 is to develop the code -->
<!-- for the section. -->
</section>
</body>
<footer>
copyright © 2021 | logistics website
</footer>
</html>