Created
May 27, 2017 19:29
-
-
Save rodrigo-frenk/fada7e0f91b23bf15edd7ad361144859 to your computer and use it in GitHub Desktop.
artista.html
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
| <!-- 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