-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 759 Bytes
/
index.html
File metadata and controls
33 lines (33 loc) · 759 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>dbarros.dev</title>
<style>
@font-face {
font-family: "Meslo";
src: url("./fonts/meslo.ttf");
}
body {
display:flex;
flex-direction: column;
justify-content: center;
height: 100vh;
font-family: "Meslo", monospace;
}
section {
text-align: center;
}
</style>
</head>
<body>
<section>
<h1>Nada aqui, por enquanto...</h1>
<h2>Mas estou trabalhando em algo legal! :)</h2>
<p>
Se quiser entrar em contato, aqui está meu <a href="https://www.linkedin.com/in/cbsorrilha/">linkedin.</a>
</p>
</section>
</body>
</html>