Skip to content

Instantly share code, notes, and snippets.

@gootyfer
Created October 3, 2017 14:09
Show Gist options
  • Save gootyfer/432dc33ea71c8acec4cc925b86578a89 to your computer and use it in GitHub Desktop.
Save gootyfer/432dc33ea71c8acec4cc925b86578a89 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ejemplos</title>
<style>
ul{
list-style: none;
display: flex;
flex-wrap: wrap;
}
ul li{
padding: 10px;
}
ul a{
text-decoration: none;
}
ul img{
width: 300px;
}
.name{
text-align: center;
}
</style>
</head>
<body>
<ul>
<li>
<a href="#1">
<img src="https://www.anipedia.net/imagenes/que-comen-los-perros.jpg" alt="">
<h4 class="name">Perro 1</h1>
</a>
</li>
<li>
<a href="#2">
<img src="https://www.anipedia.net/imagenes/que-comen-los-perros.jpg" alt="">
<h4 class="name">Perro 2</h1>
</a>
</li>
<li>
<a href="#3">
<img src="https://www.anipedia.net/imagenes/que-comen-los-perros.jpg" alt="">
<h4 class="name">Perro 3</h1>
</a>
</li>
<li>
<a href="#4">
<img src="https://www.anipedia.net/imagenes/que-comen-los-perros.jpg" alt="">
<h4 class="name">Perro 4</h1>
</a>
</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment