-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (39 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Freelaflix</title>
<style>
div#app {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: sans-serif;
text-align: center;
height: 100vh;
padding: 1rem;
}
h1 {
margin: 20px 0;
font-size: 72px;
color: #25547d;
}
h2 {
margin: 0;
font-size: 32px;
line-height: 38px;
font-weight: 100;
color: #797979;
}
</style>
</head>
<body>
<div id="app">
<h1>Freelaflix</h1>
<h2>Reinvente sua carreira e assuma as rédeas do seu trabalho</h2>
</div>
</body>
</html>