<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ma Première Page</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #f4f4f4;
color: #333;
}
header {
background: #0078D7;
color: white;
padding: 20px;
text-align: center;
}
main {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background: white;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
text-align: center;
}
button {
background: #0078D7;
color: white;
border: none;
padding: 12px 24px;
border-radius: 6px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background: #005fa3;
}
footer {
text-align: center;
padding: 20px;
color: #777;
margin-top: 30px;
}
</style>
</head>
<body>
<header>
<h1>Bienvenue 👋</h1>
<p>Ma première page web en HTML</p>
</header>
<main>
<h2>Hello World !</h2>
<p>
Cette page est entièrement écrite en HTML avec un peu de CSS et de JavaScript.
</p>
<button onclick="direBonjour()">
Cliquez ici
</button>
</main>
<footer>
© 2026 - Mon site web
</footer>
<script>
function direBonjour() {
alert("Bonjour ! Merci de votre visite 😊");
}
</script>
</body>
</html>