ENEM/index.html
2024-03-20 14:32:08 -03:00

31 lines
633 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ENEM em Dados</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #5e5e5ec2;
color: #ffffff;
}
#app {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
</style>
</head>
<body>
<div id="app">
<h1>ENEM em Dados</h1>
<p>Plataforma em desenvolvimento...</p>
</div>
</body>
</html>