Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save rodrigo-frenk/fada7e0f91b23bf15edd7ad361144859 to your computer and use it in GitHub Desktop.

Select an option

Save rodrigo-frenk/fada7e0f91b23bf15edd7ad361144859 to your computer and use it in GitHub Desktop.
artista.html
<!-- section#artistas -->
<section id="artistas">
<h1>
Artistas
</h1>
<ul>
<?php for( $i=0; $i<12; $i++ ) : ?>
<li>
<header>
<h5>
Nombre del Artista
</h5>
</header>
<div class="imagen">
<img src="http://unsplash.it?random=<?php echo $i ?>" alt="" />
</div>
<footer>
<ul>
<li>
Género 1
</li>
<li>
Género 2
</li>
</ul>
<button>
Ver
</button>
</footer>
</li>
<?php endfor; ?>
</ul>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment