36 lines
670 B
HTML
36 lines
670 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Turn 0 Around</title>
|
|
<style type="text/css">
|
|
html,
|
|
body {
|
|
height: 90%;
|
|
}
|
|
|
|
body {
|
|
background-color: #38607c;
|
|
}
|
|
|
|
div.wrap {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
}
|
|
|
|
h1.slogan {
|
|
font-family: sans-serif;
|
|
color: #d44e52;
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="wrap">
|
|
<h1 class="slogan">licking and assemble</h1>
|
|
</div>
|
|
</body>
|
|
</html>
|