SAEWEB2.2/ci/application/views/layout/footer.php

49 lines
1.7 KiB
PHP
Raw Permalink Normal View History

2024-05-30 10:05:37 +02:00
<!doctype html>
<html lang="en" class="has-navbar-fixed-top">
<head>
<meta charset="UTF-8" />
<title>MUSIC APP</title>
2024-06-12 11:18:32 +02:00
<link rel="stylesheet" href="<?= base_url('assets/CSS/style.css') ?>">
2024-05-30 10:05:37 +02:00
</head>
<body>
<footer class="footer">
<div class="footer-content">
<div class="footer-section">
<h3>Mentions légales</h3>
<a href="html/mention_legal.html">Consulter nos mentions légales</a> <br>
<a href="Charte_graphique.pdf" target="_blank">Consulter notre chartre graphique</a>
</div>
<div class="footer-section">
<h3>Plan du site</h3>
<a href="html/plan.html">Consulter le plan du site</a>
</div>
<div class="footer-section">
<h3>Contact</h3>
<p>Email : <a href="mailto:contact.Spotifly@gmail.com">contact.SpotiFly@gmail.com</a></p>
<p>
</div>
<div class="footer-section-reseaux">
<h3>Réseaux sociaux</h3>
<div class="logo-reseaux">
<p>
<a href="https://www.instagram.com/" target="_blank" class="social-icon">
2024-06-11 16:12:33 +02:00
<img src=<?= base_url('assets/img/Instagram.png') ?> alt="Description de l'image 2">
2024-05-30 10:05:37 +02:00
</a>
</p>
<p>
<a href="https://www.X.com/" target="_blank" class="social-icon">
2024-06-11 16:12:33 +02:00
<img src=<?= base_url('assets/img/twitter.png') ?> alt="Description de l'image 2">
2024-05-30 10:05:37 +02:00
</a>
</p>
</div>
</div>
</div>
<div class="footer-logo">
2024-06-11 16:12:33 +02:00
<img src=<?= base_url('assets/img/SpotiFly.png') ?> alt="Description de l'image 2">
2024-05-30 10:05:37 +02:00
<p>&copy; 2024 SpotiFly.</p>
</div>
</footer>
</body>
2024-05-21 15:05:29 +02:00
</html>
2024-05-30 10:05:37 +02:00