ifmspp-html-docker-example/index.html
2024-03-20 09:46:51 -04:00

31 lines
651 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTML ❤️ Docker</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #0c0c0c;
}
#app {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
</style>
</head>
<body>
<div id="app">
<h1>Funcionou!</h1>
<p>Este é um exemplo de aplicação HTML com Docker.</p>
</div>
</body>
</html>