ifmspp-html-docker-example/index.html

25 lines
570 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Exemplo</title>
<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>
<p>Este é um exemplo de aplicação HTML com Docker.</p>
</body>
</html>