-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (32 loc) · 993 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Domínio Privado</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
/* Adiciona display: flex para o body */
flex-direction: column;
/* Define a direção do flexbox como coluna */
align-items: center;
/* Alinha os itens no flexbox horizontalmente ao centro */
justify-content: center;
/* Alinha os itens no flexbox verticalmente ao centro */
height: 100vh;
/* Define a altura do body como 100% da altura da tela */
}
#frase-centralizada {
font-size: 32px;
font-weight: bold;
}
</style>
</head>
<body>
<div id="frase-centralizada">Private Domain</div>
</body>
</html>