ifmspp-html-docker-example/index.html

31 lines
651 B
HTML
Raw Normal View History

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