Initial Commit

This commit is contained in:
Orangerot 2024-12-05 22:55:49 +01:00
commit 5f0cd016bf
4 changed files with 35 additions and 0 deletions

3
bulma.min.css vendored Normal file

File diff suppressed because one or more lines are too long

23
index.html Normal file
View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="main.js"></script>
<link rel="stylesheet" href="bulma.min.css">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<section class="section">
<div class="container">
<h1 class="title">
Hello World
</h1>
<p class="subtitle">
My first website with <strong>Bulma</strong>!
</p>
</div>
</section>
</body>
</html>

6
main.js Normal file
View file

@ -0,0 +1,6 @@
document.addEventListener("DOMContentLoaded", main)
function main() {
}

3
style.css Normal file
View file

@ -0,0 +1,3 @@
html, body {
margin: 0px;
}