-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (54 loc) · 1.14 KB
/
index.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter" />
<title>Nginx</title>
<style>
* {
font-family: "Inter", sans-serif;
margin: 0;
padding: 0;
background-color: #2e2d30;
}
body {
line-height: 1.6;
padding: 0 5em 0 5em;
box-sizing: border-box;
}
header {
color: #dbdbdbef;
margin-bottom: 2em;
margin-top: 2em;
}
.container {
display: flex;
flex-direction: row;
align-items: center;
}
.content {
text-align: justify;
max-width: 800px;
color: #dbdbdbef;
}
.image {
padding-left: 10em;
}
img {
width: 400px;
height: auto;
}
</style>
</head>
<body>
<header>
<h2>Nginx</h2>
</header>
<div class="container">
<div class="image">
<img src="https://i.imgflip.com/4fcznm.png?a477288" />
</div>
</div>
</body>
</html>