Last active
July 1, 2021 23:00
-
-
Save ErikGMatos/26af04a9a8b0314122221d3442ec4942 to your computer and use it in GitHub Desktop.
Table of the Amaral =)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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ê veio! Essa é 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