ifmspp-html-docker-example/index.html

25 lines
570 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" />
<title>Exemplo</title>
2024-03-20 13:02:16 +00:00
<style>
body {
background-color: #fcfcfc;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
color: #0c0c0c;
font-family: Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Bem-vindo!</h1>
2024-03-20 13:23:52 +00:00
<p>Este é um exemplo de aplicação HTML com Docker.</p>
2024-03-20 13:02:16 +00:00
</body>
</html>