Ajout des fichiers html et de 1 fichier CSS

This commit is contained in:
Tom Guerin 2025-01-14 15:41:04 +01:00
parent 4699e3c3e0
commit 6cf0b41caf
4 changed files with 18 additions and 3 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
img/

View File

@ -9,5 +9,7 @@
<body>
<h1>Quel titre !</h1>
<p>Bonjour les SIO :)</p>
<h2>pifhaepih</h2>
<p>eoufygouy</p>
</body>
</html>

12
page2.html Normal file
View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Hello there</title>
</head>
<body>
<h1>Quel titre !</h1>
</body>
</html>

View File

@ -1,10 +1,10 @@
body {
background-color: #6d6551;
background-color: #eeb72c;
}
h1 {
color: #c6d2db;
color: #0c8cee;
}
p {
color: #c9c0d1;
color: #8800ff;
}