-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (33 loc) · 863 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Borela Tech</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Anonymous+Pro&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
}
html, body {
height: 100vh;
width: 100vw;
}
body {
display: flex;
align-items: center;
justify-content: center;
color: #eceff1;
background: #263238;
font-family: 'Anonymous Pro', monospace;
font-weight: bold;
}
</style>
</head>
<body>
Under construction...
</body>
</html>