-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
45 lines (44 loc) · 735 Bytes
/
Copy pathtemplate.html
File metadata and controls
45 lines (44 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ title }}</title>
</head>
<style>
h1 {
font-size: xxx-large;
text-align: center;
font-family: Calibri;
color: darkred;
}
h2 {
font-size: xx-large;
font-style: italic;
font-family: Calibri;
}
main {
display: flex;
justify-content: center;
flex-direction: column;
}
body {
margin: 0;
width: 100vw;
}
hr {
background-color: black;
width: 45%;
}
section {
margin: auto;
width: 33%
}
</style>
<body>
<main>
<h1>{{ title }}</h1>
<hr>
{{ sections }}
</main>
</body>
</html>