ange
df8cd1ea54
Co-authored-by: stcb <21@stcb.cc> Reviewed-on: #7 Co-authored-by: ange <ange@yw5n.com> Co-committed-by: ange <ange@yw5n.com>
32 lines
539 B
HTML
32 lines
539 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
.centered {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
font-size: 3em;
|
|
margin: 0;
|
|
}
|
|
|
|
.no-underline {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="home">
|
|
<h1 class="centered">
|
|
<router-link to="/description" class="no-underline">ICING</router-link>
|
|
</h1>
|
|
</div>
|
|
</body>
|
|
</html>
|