63 lines
2.1 KiB
HTML
63 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Contact | REDSCAPEFACTORY</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="icon" type="image/png" href="assets/img/favicon.png">
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<nav>
|
|
<div class="logo">
|
|
<a href="index.html"><img src="assets/img/logo.png" alt="REDSCAPEFACTORY"></a>
|
|
</div>
|
|
<ul class="nav-links">
|
|
<li><a href="index.html">Home</a></li>
|
|
<li><a href="music.html">Music</a></li>
|
|
<li><a href="podcasts.html">Podcasts</a></li>
|
|
<li><a href="gallery.html">Gallery</a></li>
|
|
<li><a href="about.html">About</a></li>
|
|
<li><a href="contact.html" class="active">Contact</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<main class="contact-page">
|
|
<section class="project-intro-section">
|
|
<div class="brand-line"><span>GET IN TOUCH</span></div>
|
|
<h1>Contact</h1>
|
|
<p class="intro-text">
|
|
Pour toute demande de collaboration, production de podcast ou simple message, utilisez les liens ci-dessous.
|
|
</p>
|
|
</section>
|
|
|
|
<section class="contact-container">
|
|
<div class="contact-grid">
|
|
<div class="contact-method">
|
|
<h3>Email</h3>
|
|
<a href="mailto:hello@redscapefactory.com" class="contact-link">hello@redscapefactory.com</a>
|
|
</div>
|
|
|
|
<div class="contact-method">
|
|
<h3>Follow</h3>
|
|
<ul class="social-list">
|
|
<li><a href="#">Instagram</a></li>
|
|
<li><a href="#">SoundCloud</a></li>
|
|
<li><a href="#">Bandcamp</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<footer>
|
|
<div class="footer-wrapper">
|
|
<p>© 2026 REDSCAPEFACTORY</p>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html> |