Add a basic website

This commit is contained in:
Manuel Thalmann 2022-12-04 21:33:38 +01:00
parent 632091a0d8
commit 003f32b6a4
2 changed files with 5 additions and 6 deletions

View file

@ -1,14 +1,13 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset='utf-8'> <meta charset="utf-8" />
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Connect Four</title> <title>Connect Four</title>
<meta name='viewport' content='width=device-width, initial-scale=1'> <meta name="viewport" content="width=device-width, initial-scale=1">
<link rel='stylesheet' type='text/css' media='screen' href='main.css'> <link rel="stylesheet" type="text/css" href="./styles/style.css">
<script src='main.js'></script> <script src="./js/main.js"></script>
</head> </head>
<body> <body>
äh <h1>Welcome to ConnectForce</h1>
</body> </body>
</html> </html>

0
src/styles/style.css Normal file
View file