37 lines
860 B
HTML
37 lines
860 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>Test</title>
|
||
|
<style>
|
||
|
body {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
|
||
|
background: #202022;
|
||
|
color: #eee;
|
||
|
font-family: sans-serif;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
|
||
|
font-size: 2rem;
|
||
|
font-weight: 600;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Hello, {{ name }}!</h1>
|
||
|
</body>
|
||
|
</html>
|