28 lines
651 B
HTML
28 lines
651 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; /* Dark grey color similar to Discord background */
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
height: 100vh;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
color: #ffffff; /* White text color */
|
||
|
font-size: 36px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>{{ name }}</h1>
|
||
|
</body>
|
||
|
</html>
|