added initial jscode and linked sylesheet to index.html

This commit is contained in:
Andreas Jönsson 2025-04-21 22:14:47 +02:00
parent 5275c0f87e
commit 909e427e98
3 changed files with 12 additions and 0 deletions

8
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,8 @@
{
"github.copilot.enable": {
"*": false,
"plaintext": false,
"markdown": false,
"scminput": false
}
}

3
app.js
View File

@ -0,0 +1,3 @@
document.addEventListener('DOMContentLoaded', () => {
// Code goes here
})

View File

@ -3,6 +3,7 @@
<head>
<meta charset="UTF-8">
<script src="app.js"></script>
<link rel="stylesheet" href="style.css"></link>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Javascript Tetris</title>
</head>