Téléverser les fichiers vers "/"

This commit is contained in:
2025-11-14 22:07:01 +00:00
parent 8e8fc0fbd6
commit ac78ee9d01
2 changed files with 138 additions and 0 deletions

69
film1.html Normal file
View File

@@ -0,0 +1,69 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MovieLooker - Lecture: Mon Premier Film</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 class="player-page">
<header class="player-header">
<div class="logo">
<a href="index.html">
<img src="images/logo.png" alt="MovieLooker Logo">
<span>MovieLooker</span>
</a>
</div>
<a href="index.html" class="back-to-gallery">
<span class="icon-arrow">&larr;</span> Retour à l'accueil
</a>
</header>
<main class="player-main">
<div class="video-player-section">
<video controls autoplay class="main-video" poster="images/poster_film1.jpg">
<source src="videos/mon-premier-film.mp4" type="video/mp4">
<p>Votre navigateur ne supporte pas la lecture vidéo.</p>
</video>
</div>
<section class="film-details">
<div class="film-details-content">
<img src="images/poster_film1.jpg" alt="Affiche de Mon Premier Film" class="detail-poster">
<div class="details-text">
<h1>Mon Premier Film</h1>
<p class="tagline">"Là où l'imagination prend son envol."</p>
<p class="synopsis">Ce film explore les profondeurs de l'âme humaine à travers un voyage initiatique. Réalisé avec passion en 2025, il promet une expérience inoubliable. Préparez-vous à rire, pleurer et réfléchir.</p>
<div class="meta-info">
<span>Année: 2025</span>
<span>Durée: 1h30min</span>
<span>Genre: Drame, Aventure</span>
</div>
<div class="call-to-action">
<button class="btn btn-primary-alt">Partager</button>
<button class="btn btn-secondary-alt">Ajouter à ma liste</button>
</div>
</div>
</div>
<aside class="related-content">
<h3>Vous aimerez peut-être aussi :</h3>
<div class="related-movies">
<div class="related-card">
<img src="images/poster_film1.jpg" alt="Film Similaire 1">
<h4>Film Similaire</h4>
</div>
</div>
</aside>
</section>
</main>
<footer class="main-footer">
<p>&copy; 2024 MovieLooker. Tous droits réservés.</p>
</footer>
</body>
</html>

69
index.html Normal file
View File

@@ -0,0 +1,69 @@
<!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>