Skip to content

Instantly share code, notes, and snippets.

@bacillo
Created November 14, 2013 05:59
Show Gist options
  • Save bacillo/7462147 to your computer and use it in GitHub Desktop.
Save bacillo/7462147 to your computer and use it in GitHub Desktop.
Soluzione esercizio 2 : Tabella con immagini
<html>
<head>
<title>Tabelle</title>
<style>
table{
border-collapse:collapse;
}
td{
border: 1px solid #d4d4d4;
padding: 7px 5px;
}
img{
width:200px;
}
</style>
</head>
<body>
<table>
<tr>
<td><img src="katy.jpg"></td>
<td>Katy Perry</td>
</tr>
<tr>
<td><img src="gp.jpg"></td>
<td>Gwyneth Paltrow</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment