ENEM/index.html

31 lines
633 B
HTML
Raw Normal View History

2024-03-20 17:10:48 +00:00
<!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;
2024-03-20 17:32:08 +00:00
background-color: #5e5e5ec2;
color: #ffffff;
2024-03-20 17:10:48 +00:00
}
#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>