31 lines
603 B
HTML
31 lines
603 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Projet 2</title>
|
|
<style>
|
|
body {
|
|
background: #0d0d0d;
|
|
color: #f0f0f0;
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
padding-top: 50px;
|
|
}
|
|
a {
|
|
color: #9d4edd;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Projet 2</h1>
|
|
|
|
<p>Ici aussi la page est en cours de modification.</p>
|
|
|
|
</body>
|
|
</html> |