-
Notifications
You must be signed in to change notification settings - Fork 0
/
foot.php
43 lines (41 loc) · 1.27 KB
/
foot.php
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
<footer>
<div class="foot-empty"></div>
<div class="soc">
<a href=""><img src="img/btn/face.png" alt=""></a>
<a href=""><img src="img/btn/twitter.png" alt=""></a>
<a href=""><img src="img/btn/yout.png" alt=""></a>
<a href=""><img src="img/btn/insta.png" alt=""></a>
<a href=""><img src="img/btn/mail.png" alt=""></a>
</div>
<div class="foot-info">
<div class="foot-menu">
<a href="#">Home</a>
<a href="#">About us</a>
<a href="#">Trips</a>
<a href="#">Blog</a>
<a href="#">Contact</a>
</div>
<div class="language">
<a href=""><img src="img/eng.png" alt=""></a>
<a href=""><img src="img/nl.png" alt=""></a>
<a href=""><img src="img/fr.png" alt=""></a>
</div>
</div>
<div class="foot-con">
<h3>Contact us</h3>
<br> +32 678 405 577
</p>
</div>
<div class="copyright">
<p>Copyright© 2019 TRAVELERS. All rights reserved. </p>
</div>
</footer>
<!-- Button which show and hides menu -->
<script type="text/javascript">
$(".btn").on("click", function() {
$('.menu').toggleClass("show");
});
</script>
</body>
</html>