-
Notifications
You must be signed in to change notification settings - Fork 1
/
1.html
35 lines (35 loc) · 946 Bytes
/
1.html
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
<!DOCTYPE html>
<html>
<head>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: Roboto, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
text-align: center;
line-height: 1.6;
}
.content {
max-width: 210mm;
padding: 20mm;
border: 1px solid #000;
box-sizing: border-box;
font-size: 1.2rem;
}
h1 {
margin-top: 0;
}
</style>
</head>
<body>
<div class="content">
<h1>Additional articles</h1>
<p>List of extra topics that assume you've covered the first two parts of tutorial. There is no clear hierarchy here, you can read articles in the order you want.</p>
</div>
</body>
</html>