20 lines
206 B
HTML
20 lines
206 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<title>@{{username}}</title>
|
||
|
<style>
|
||
|
body {
|
||
|
background-color: black;
|
||
|
color: rebeccapurple;
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>hi {{username}}</h1>
|
||
|
</body>
|
||
|
|
||
|
</html>
|