Created
October 28, 2014 15:17
-
-
Save tommymarshall/e5ef5b6a2afefb3e9f09 to your computer and use it in GitHub Desktop.
Simpler, always?
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
<!-- OPTION A --> | |
<article class="featured-home"> | |
<figure class="featured-home__figure"> | |
<img src="#TODO" alt=""> | |
</figure> | |
<h4 class="featured-home__header">Poipu, Hawaii Sky</h4> | |
<footer class="featured-home__footer"> | |
<p>from $199/Night</p> | |
</footer> | |
</article> | |
<!-- OPTION B --> | |
<article class="featured-home"> | |
<figure> | |
<img src="#TODO" alt=""> | |
</figure> | |
<h4>Poipu, Hawaii Sky</h4> | |
<footer> | |
<p>from $199/Night</p> | |
</footer> | |
</article> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment