Skip to content

Instantly share code, notes, and snippets.

@tommymarshall
Created October 28, 2014 15:17
Show Gist options
  • Save tommymarshall/e5ef5b6a2afefb3e9f09 to your computer and use it in GitHub Desktop.
Save tommymarshall/e5ef5b6a2afefb3e9f09 to your computer and use it in GitHub Desktop.
Simpler, always?
<!-- 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