34 lines
613 B
HTML
34 lines
613 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
|
|
rel="stylesheet"
|
|
/>
|
|
<style>
|
|
h1 {
|
|
font-weight: 500;
|
|
font-family: serif;
|
|
color: white;
|
|
font-size: 60px;
|
|
}
|
|
|
|
.centered {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
text-align: center;
|
|
}
|
|
html {
|
|
background-color: black;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="centered">
|
|
<h1>Velvox</h1>
|
|
</div>
|
|
</body>
|
|
</html>
|