Initial Commit
This commit is contained in:
commit
5f0cd016bf
3
bulma.min.css
vendored
Normal file
3
bulma.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
23
index.html
Normal file
23
index.html
Normal 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
6
main.js
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
document.addEventListener("DOMContentLoaded", main)
|
||||||
|
|
||||||
|
function main() {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue