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>
|
|
|
|
<link rel="stylesheet" href="<?= base_url('assets/style.css') ?>">
|
2024-06-05 13:51:23 +02:00
|
|
|
<link rel="stylesheet" href="<?= base_url('assets/playlist.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>© 2024 SpotiFly.</p>
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
</body>
|
2024-05-21 15:05:29 +02:00
|
|
|
</html>
|
2024-05-30 10:05:37 +02:00
|
|
|
|