Initial commit

This commit is contained in:
2023-04-06 09:55:02 +02:00
parent 58ee35fac1
commit f718736d33
4 changed files with 36 additions and 0 deletions

BIN
V5.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 253 KiB

19
index.html Normal file
View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title> Oui....Stiti </title>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
<link rel="icon" href="V5.png" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
</head>
<body>
Oui.....Stiti
<div id="bottom">
Made by ♡ by Félix MARQUET
</div>
</body>
</html>

0
script.js Normal file
View File

17
style.css Normal file
View File

@@ -0,0 +1,17 @@
body{
font-family: 'Roboto', sans-serif;
background-color: black;
color: white;
}
#bottom{
position: fixed;
bottom: 0;
width: 100%;
height: 50px;
color: white;
background-color: black;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}