Files
teste/teste.html
2026-06-09 00:17:04 -03:00

70 lines
1.3 KiB
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);
}
.page-header {
display: flex;
align-items: center;
gap: 18px;
margin-bottom: 12px;
}
.oracle-logo {
width: 132px;
height: auto;
flex: 0 0 auto;
display: block;
}
h1 {
margin: 0;
font-size: 2rem;
}
p {
margin: 0;
line-height: 1.6;
}
</style>
</head>
<body>
<main>
<header class="page-header">
<img
class="oracle-logo"
src="https://www.oracle.com/a/ocom/img/oracle-logo.svg"
alt="Oracle"
>
<h1>Pagina inicial</h1>
</header>
<p>Este e um arquivo HTML inicial pronto para receber seu conteudo.</p>
</main>
</body>
</html>