add basic files

This commit is contained in:
Luca Jakob 2026-02-10 16:37:34 +01:00
parent b524f35512
commit 04f49a8635
4 changed files with 22 additions and 0 deletions

View File

@ -1,3 +1,7 @@
# FS 2026 Frontendentwicklung
## Semesterarbeit
### Configuration
This project uses BiomeJS for linting. To configure it:

14
frontend/index.html Normal file
View File

@ -0,0 +1,14 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="styles/index.css" />
</head>
<body>
<h1>Semesterarbeit</h1>
<p>Test</p>
<script type="text/javascript" src="scripts/index.js" />
</body>
</html>

View File

@ -0,0 +1 @@
console.log('Loaded!')

View File

@ -0,0 +1,3 @@
body {
background-color: blue;
}