Update README and index.html

This commit is contained in:
Douglas Barone 2024-03-20 09:46:51 -04:00
parent faf2c15593
commit 43776dd69a
2 changed files with 33 additions and 11 deletions

View File

@ -1 +1,17 @@
# Repositório de exemplo para o campus PP
# Exemplo de repositório para HTML
Repositório com configurações mínimas para utilização do CI/CD do campus
## Requisitos
- Docker
## Para rodar localmente
```
docker build -t ifms/html-docker-example .
docker run -p 8080:80 ifms/html-docker-example:latest
```
Acesse http://localhost:8080

View File

@ -3,22 +3,28 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Exemplo</title>
<title>HTML ❤️ Docker</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;
background-color: #f4f4f4;
color: #0c0c0c;
}
#app {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
</style>
</head>
<body>
<h1>Bem-vindo!</h1>
<p>Este é um exemplo de aplicação HTML com Docker.</p>
<div id="app">
<h1>Funcionou!</h1>
<p>Este é um exemplo de aplicação HTML com Docker.</p>
</div>
</body>
</html>