-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (42 loc) · 1.19 KB
/
index.html
File metadata and controls
44 lines (42 loc) · 1.19 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta
name="description"
content="Falsy.cz - problem solvers"
/>
<title>Falsy</title>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" rel="stylesheet">
<style>
html, body {
font-family: 'Roboto', sans-serif;
height: 100%;
padding: 0;
margin: 0;
}
body {
background-image: url("./bg.svg");
background-repeat: no-repeat;
background-size: cover;
}
.content {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
</style>
</head>
<body>
<div class="content">
<h1>Problem solvers.</h1>
<a class="github-button" href="https://github.com/flsy" data-size="large" aria-label="Follow @flsy on GitHub">Follow
@flsy</a>
</div>
</body>
</html>