Some stuff working

This commit is contained in:
2026-03-20 15:17:34 +01:00
parent b3ce220ba1
commit bb9449e484
7 changed files with 29 additions and 15 deletions

BIN
assets/ida_blue.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 506 KiB

BIN
assets/title.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

21
index.html Normal file
View File

@@ -0,0 +1,21 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<link rel="stylesheet" href="style.css">
</head>
<body class="bg-grey p-8">
<h1 class="txt-cyan text-3xl font-bold underline">
<div class="flex flex-row space-x-8">
<div class="outline-8 p-2">
<img class="" src="assets/ida_blue.png" />
</div>
<div>
<img class=""src="assets/title.png" />
</div>
</div>
</h1>
</body>
</html>

View File

@@ -1,15 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ayabusa's Homepage</title>
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
...
<!-- Le reste du contenu -->
...
</body>
</html>

View File

8
style.css Normal file
View File

@@ -0,0 +1,8 @@
.txt-cyan {
color: #8bc8feff;
}
.bg-grey {
background-color: #071c2dff;
color: #071c2dff;
}