Skip to content

Commit d44803b

Browse files
committed
add html/css
1 parent 114a1b3 commit d44803b

5 files changed

Lines changed: 33 additions & 13 deletions

File tree

static/404.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
body {
2+
font-size: 80px;
3+
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
4+
align-items: center;
5+
background-color: black;
6+
color: white;
7+
align-items: center;
8+
}
9+
p {
10+
vertical-align: middle;
11+
text-align: center;
12+
}

templates/404.html

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
<html>
2+
<head>
3+
<title>
4+
404 Not Found
5+
</title>
6+
</head>
7+
<link rel="stylesheet" type="text/css" href="404.css" />
28
<body>
3-
<h1>
4-
404.
5-
</h1>
6-
<h2>
7-
<i>Unexisting things cannot be found</i>
8-
</h2>
9+
<div class = container></div>
10+
11+
<p>404</p>
12+
<p><i>Unexisting things cannot be found</i></p>
13+
</div>
914
</body>
1015
</html>

templates/500.html

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<html>
2+
23
<body>
3-
<h1>
4-
500
5-
</h1>
6-
<h2>
7-
You asked for something dangerous
8-
</h2>
4+
<p>
5+
500 Bad Request
6+
</p>
7+
8+
9+
10+
911
</body>
1012
</html>

templates/rick.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<html>
22
<head>
3+
<link rel="stylesheet" type="text/css" href="style.css" />
34
<title>Test</title>
45
</head>
56
<body>

templates/start.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</body>
88
<script>
99
let sessioncode = "\\code"
10-
10+
1111
</script>
1212

1313
</html>

0 commit comments

Comments
 (0)