Untitled
unknown
plain_text
a year ago
1.3 kB
8
Indexable
<!DOCTYPE html> <html lang="pt-BR"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="Descrição do seu projeto"> <meta name="keywords" content="palavras-chave, do, seu, projeto"> <meta name="author" content="Seu Nome"> <title>Título do Projeto</title> <link rel="stylesheet" href="estilo.css"> <!-- Link para seu arquivo de estilos CSS --> </head> <body> <!-- SUA ESTRUTURA HTML ENTRA AQUI EX: <div class="mishe"> <img src="img/20201123_175918.jpg" alt="pit mishe"> <img src="img/20210302_162442.jpg" alt="outra pit mishe"> </div> --> <!-- Lembre de criar um arquivo chamado estilo.css, dentro dele você pode passar parâmetros em CSS. Usei aqui um padrão que use o Flex para fazer o alinhamento dos elementos. Depois testa para ver como fica. (cola dentro do seu arquivo estilo.css) .mishe { display: flex; margin: 0 auto; width: 800px; justify-content: space-between; flex-wrap: wrap; gap: 10px; } .mishe img { max-width: 200px; height: auto; object-fit: contain; margin-bottom: 20px; } --> </body> </html>
Editor is loading...
Leave a Comment