You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
648 B
HTML
31 lines
648 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Cover</title>
|
|
<style>
|
|
html, body{
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
}
|
|
body{
|
|
display: flex;
|
|
flex-flow: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.subtitle{
|
|
font-weight: bold;
|
|
font-size: 1.2rem ;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>{{title}}</h1>
|
|
<p class="subtitle">{{subtitle}}</p>
|
|
<p class="date">{{date}}</p>
|
|
</body>
|
|
</html>
|