Files
teste/teste.html
2026-06-09 00:10:11 -03:00

49 lines
919 B
HTML

<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Documento Inicial</title>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
font-family: Arial, sans-serif;
color: #1f2937;
background: #f3f4f6;
display: grid;
place-items: center;
}
main {
width: min(720px, 92vw);
padding: 32px;
background: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 8px;
box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
h1 {
margin: 0 0 12px;
font-size: 2rem;
}
p {
margin: 0;
line-height: 1.6;
}
</style>
</head>
<body>
<main>
<h1>Pagina inicial</h1>
<p>Este e um arquivo HTML inicial pronto para receber seu conteudo.</p>
</main>
</body>
</html>