-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
75 lines (63 loc) · 2.03 KB
/
contact.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
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
<!doctype html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="css/w3.css">
<link rel="stylesheet" href="css/style.css">
<title>Contact Us</title>
</head>
<body>
<nav class="w3-navbar w3-card-2 w3-light-grey">
<li><a href="index.html" class="w3-hover-white">Home</a></li>
<li><a href="about.html" class="w3-hover-white">About Us</a></li>
<li><a href="../emmnas/index.html" class="w3-hover-white">Portal</a></li>
<li class="w3-dropdown-hover">
<a href="services.html">Our Services</a>
<div class="w3-dropdown-content w3-white w3-card-4">
<a href="services/publishing.html">Publishing</a>
<a href="services/farming.html">Farming</a>
<a href="services/catering.html">Catering</a>
<a href="services/contracts.html">General Contracts</a>
</div>
</li>
<li class="w3-right"><a href="#" class="w3-hover-white w3-green">Contact Us</a></li>
<li><a href="news.html" class="w3-hover-white">News</a></li>
</nav>
<div id="main">
</div>
<footer>
<div class="table">
<div class="row">
<div class="col">
<strong>Webmaster</strong><br>
© 2017 Fehntastic Innovations.<br>
Powered by Fehntastic Innovations.<br>
Contact: [email protected]. +2348090179535
</div>
<div class="col">
<strong>Our Services</strong><br>
Farming.<br>
Catering Services.<br>
Publishing & General Contracts.
</div>
<div class="col">
<strong>Contact Us</strong><br>
48, Iyase Street Kosofe Ketu, Lagos.<br>
07036005760, 07062374188<br>
</div>
<div class="col footnav">
<strong>Go to</strong><br>
<a href="index.html">Home</a>
<a href="#">Contact Us</a><br>
<a href="services.html" style="border-right:#FFF 1px solid">Services</a>
<a href="#">Portal</a><br>
<a href="news.html">News</a><br>
</div>
</div>
</footer>
</body>
</html>