Skip to content

Instantly share code, notes, and snippets.

@ErikGMatos
Last active July 1, 2021 23:00
Show Gist options
  • Save ErikGMatos/26af04a9a8b0314122221d3442ec4942 to your computer and use it in GitHub Desktop.
Save ErikGMatos/26af04a9a8b0314122221d3442ec4942 to your computer and use it in GitHub Desktop.
Table of the Amaral =)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tabela do Amaral</title>
</head>
<style>
/* reset css */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
/* a magica acontece aqui */
img {
display: block;
max-width:100%;
}
/* e aqui tbm */
table {
border-spacing: 0;
width: 600px;
}
</style>
<body>
<table>
<thead>
<tr>
<th>Titulo da coluna</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<img src="https://www.todoestudo.com.br/wp-content/uploads/2015/03/paisagem-natural-1024x679.jpg" alt="Brinquedos Bandeirante">
</td>
</tr>
<tr>
<td>
<img src="https://www.todoestudo.com.br/wp-content/uploads/2015/03/paisagem-natural-1024x679.jpg" alt="Que bom que voc&ecirc; veio! Essa &eacute; a nossa nova Plataforma Digital de Relacionamento." >
</td>
</tr>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment