Basic http capability

This commit is contained in:
2024-09-09 22:12:53 +02:00
commit 6c96cae51d
4 changed files with 14 additions and 0 deletions

3
static/css/index.css Normal file
View File

@@ -0,0 +1,3 @@
h1 {
color: red;
}

1
static/html/404.html Normal file
View File

@@ -0,0 +1 @@
<h1>404 NOT FOUND</h1>

10
static/html/index.html Normal file
View File

@@ -0,0 +1,10 @@
<!doctype html>
<html lang="en">
<head>
<title>VOTE!</title>
<link rel="stylesheet" href="static/css/index.css">
</head>
<body>
<h1>Bonjour cher voyageur</h1>
</body>
</html>