Abyss/templates/hello.html
SeaswimmerTheFsh c6d31f79ce
Some checks failed
Pylint / Pylint (3.11) (push) Failing after 31s
moved templates directory
2023-10-23 12:22:51 -04:00

27 lines
576 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ name }}</title>
<style>
body {
background-color: #36393f;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
h1 {
color: #ffffff;
font-size: 36px;
text-align: center;
}
</style>
</head>
<body>
<h1>{{ name }}</h1>
</body>
</html>