Files
MovieLookerV1.0/index.html

70 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MovieLooker - Votre Cinéma Personnel</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Oswald:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<header class="main-header">
<div class="logo">
<img src="images/logo.png" alt="MovieLooker Logo">
<span>MovieLooker</span>
</div>
<nav>
<ul>
<li><a href="#hero">Accueil</a></li>
<li><a href="#collection">Mes Films</a></li>
</ul>
</nav>
</header>
<section id="hero" class="hero-section" style="background-image: url('images/banner_film1.jpg');">
<div class="hero-content">
<div class="hero-text">
<h2>Découvrez "Mon Premier Film"</h2>
<p>Une épopée visuelle et émotionnelle, conçue pour vous transporter. Plongez dans un univers où chaque scène est une œuvre d'art.</p>
<div class="hero-actions">
<a href="film1.html" class="btn btn-primary">Regarder Maintenant</a>
<a href="#" class="btn btn-secondary">Plus d'infos</a>
</div>
</div>
</div>
</section>
<main class="content-wrapper">
<section id="collection" class="movie-section">
<h2 class="section-title">Ma Collection</h2>
<div class="movie-grid">
<a href="film1.html" class="movie-card">
<img src="images/poster_film1.jpg" alt="Affiche de Mon Premier Film">
<div class="card-overlay">
<div class="overlay-content">
<h3>Mon Premier Film</h3>
<p>Un voyage inattendu...</p>
<span class="play-icon">&#9658;</span>
</div>
</div>
</a>
</div>
</section>
</main>
<footer class="main-footer">
<p>&copy; 2024 MovieLooker. Tous droits réservés.</p>
<div class="footer-links">
<a href="#">Confidentialité</a>
<a href="#">Conditions</a>
</div>
</footer>
</body>
</html>