<!DOCTYPE
html>
<html
lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<title>Vue de
Corsaire</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
background-color: #000;
color: #fff;
scroll-behavior: smooth;
}
header {
height: 100vh;
background:
url('https://via.placeholder.com/1920x1080?text=Vue+de+Corsaire') center/cover
no-repeat;
display: flex;
flex-direction:
column;
justify-content:
center;
align-items:
center;
text-align:
center;
}
header h1 {
font-size: 4rem;
color: #D4AF37;
margin-bottom:
1rem;
}
header p {
font-size:
1.5rem;
color: #fff;
}
nav {
position: fixed;
top: 0;
width: 100%;
background:
rgba(0,0,0,0.8);
padding: 1rem
2rem;
display: flex;
justify-content:
space-between;
align-items:
center;
z-index: 1000;
}
nav a {
color: #D4AF37;
margin: 0 1rem;
text-decoration:
none;
font-weight:
bold;
}
section {
padding: 5rem
2rem;
max-width:
1000px;
margin: auto;
}
h2 {
font-size: 2rem;
color: #D4AF37;
margin-bottom:
2rem;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1rem;
}
.gallery img {
width: 100%;
border: 2px
solid #D4AF37;
}
form {
display: flex;
flex-direction:
column;
gap: 1rem;
}
input, textarea {
padding: 1rem;
border: none;
border-radius:
5px;
}
button {
padding: 1rem;
background:
#D4AF37;
border: none;
color: #000;
font-weight:
bold;
cursor: pointer;
}
footer {
text-align:
center;
padding: 2rem;
background:
#111;
}
</style>
</head>
<body>
<nav>
<div><strong>Vue de Corsaire</strong></div>
<div>
<a
href="#portfolio">Portfolio</a>
<a
href="#about">À propos</a>
<a
href="#services">Prestations</a>
<a
href="#contact">Contact</a>
</div>
</nav>
<header>
<h1>Vue de
Corsaire</h1>
<p>Capturer
les émotions, sous toutes ses formes</p>
</header>
<section id="portfolio">
<h2>Portfolio</h2>
<div
class="gallery">
<img
src="https://via.placeholder.com/400x300?text=Sport"
alt="Sport">
<img
src="https://via.placeholder.com/400x300?text=Événementiel"
alt="Événementiel">
<img
src="https://via.placeholder.com/400x300?text=Portrait"
alt="Portrait">
<img
src="https://via.placeholder.com/400x300?text=Motion+Frame"
alt="Motion Frame">
</div>
</section>