-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquicklinks.html
More file actions
124 lines (85 loc) · 2.87 KB
/
Copy pathquicklinks.html
File metadata and controls
124 lines (85 loc) · 2.87 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
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MFSAM Quicklinks</title>
<link rel="icon" type="image/ico" href="logo.ico">
<link rel="stylesheet" href="quicklinks.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<nav class="navbar">
<h1 class="logo"><a href="index.html"><img src="images/logo.png" alt="Logo"></a></h1>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="explore.html">Explore</a></li>
<li><a href="quicklinks.html">Quicklinks</a></li>
<li><a href="about.html">About</a></li>
<li class="ctn"><a href="contact.html"><span>Contact</span></a></li>
</ul>
<img src="images/kisspng-computer-icons-hamburger-button-menu-new-menu-5b34724c3cb0f7.1188475115301637882486.png" alt="" class="menu-btn">
</nav>
<header>
<div class="header-content">
</div>
</header>
<section>
<div class="title">
<div class="images">
<img src="images/contact1.PNG">
</div>
</div>
</section>
<section>
<div class="register">
<ul class="reg-links">
<li><a href="index.html">Home</a></li>
<li><a href="explore.html">Explore</a></li>
<li><a href="quicklinks.html">Quicklinks</a></li>
<li><a href="video.html">videos</a></li>
<li><a href="about.html">About</a></li>
<li><a href="sponsorship.html">Join Sponsorship</a></li>
<li><a href="sponsorship.html">Join Membership</a></li>
<li><a href="donate.html">Donate</a></li>
</ul>
</div>
</section>
<section>
<div class="titles">
<div class="imagess">
<img src="images/footer.PNG">
</div>
</div>
</section>
<!--Footer -->
<br />
<section class="footer">
<h4>CONTACT ADDRESS:</h4>
<p>
NIGERIA: # 2 Andora street Suncity Galadimawa FCT Abuja.<br>
GREECE: Christos Papadima 1b Thessaloniki Greece code 54629.<br>
IRELAND: #2 Ballymore lane Craughwell Co.Galway Ireland H91N2RA.<br>
BOSTWANA : Plot 51089 Kgale view, Gabs, P O Box 2548, Gaborone, Botswana<br>
Email: medglobal.foundation@gmail.com<br>
TEL: +30 694 758 2748, +234 806 046 8225, +353 89 499 5092, +234 706 606 2154</p>
<div class="icons">
<i class="fa fa-facebook"></i>
<i class="fa fa-instagram"></i>
<i class="fa fa-twitter"></i>
<i class="fa fa-linkedin"></i>
</div>
<p style="background-color:Blue"> (C) Copyright 2022</p>
<br />
<p>Made by <i class="fa fa-heart"></i>Lil-Dino Concepts</p>
</section>
<script>
const menuBtn = document.querySelector('.menu-btn')
const navlinks = document.querySelector('.nav-links')
menuBtn.addEventListener('click',()=>{
navlinks.classList.toggle('mobile-menu')
})
</script>
</body>
</html>