Last active
May 23, 2022 12:32
-
-
Save jeffersonchaves/e945cc5237644ea6be4e58dac796f417 to your computer and use it in GitHub Desktop.
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>Casas</title> | |
<style> | |
table { | |
margin: 0 auto; | |
border: solid 1px #ccc; | |
border-spacing: 10px; /* espacamento intero - o paddig nao se aplica linhas da tabela */ | |
} | |
th { | |
padding: 10px; | |
background: #5EFB6E; | |
} | |
tr { | |
outline: solid 1px #ccc; ( | |
/* bordar sao informada aqui como outlines (linhas de fora) */ | |
} | |
td { | |
padding: 5px; | |
} | |
</style> | |
</head> | |
<body> | |
<table> | |
<tr> | |
<th colspan="2"> | |
Casas no centro | |
</th> | |
</tr> | |
<tr> | |
<td><img src="download.jpeg" /></td> | |
<td><img src="download.jpeg" /></td> | |
</tr> | |
<tr> | |
<th colspan="2"> | |
Casas na vila A | |
</th> | |
</tr> | |
<tr> | |
<td><img src="download.jpeg" /></td> | |
<td><img src="download.jpeg" /></td> | |
</tr> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment