Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.
HTML

<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Imagem Centralizada</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0; /* Cor de fundo opcional */
}

.container {
width: 90%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}

.container img {
max-width: 100%;
height: auto;
}

.speakers {
width: 90%;
text-align: center;
}

.speakers h2 {
margin-bottom: 20px;
font-size: 24px;
}

.speakers .images {
display: flex;
justify-content: center;
gap: 20px;
}

.speakers .images img {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
}
</style>
</head>
<body>
<div class="container">
<img src="https://i.postimg.cc/8zv25mb2/GIFuniverso-TOTVS.gif" alt="Universo TOTVS GIF">
</div>

<div class="speakers">
<h2>Palestrantes</h2>
<div class="images">
<img src="https://i.postimg.cc/28g5MT6M/juliano-Foto.png" alt="Palestrante 1 - Juliano">
<img src="https://i.postimg.cc/8kJcHqkM/silvano-Foto.png" alt="Palestrante 2 - Silvano">
</div>
</div>
</body>
</html>