27 lines
576 B
HTML
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>
|