36 lines
787 B
HTML
36 lines
787 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Hello {{.}}!</title>
|
|
</head>
|
|
<body>
|
|
<style>
|
|
html {
|
|
background-color: #fcf2e9;
|
|
color: #1c1c30;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 4rem;
|
|
}
|
|
</style>
|
|
|
|
<h1>Hello, {{.}}!</h1>
|
|
</body>
|
|
</html>
|