October 2017
Intermediate to advanced
522 pages
10h 9m
English
Let's go to our HTML and take a peek at this nicely nested HTML code in the secondary-section. So basically, what we have here is a section tag and three div tags that are inside of that section:
<section> <div> <figure> <img src="images/octopus-icon.png" alt="Octopus"> </figure> <h2 class="column-title">The Octopus</h2> <p>Lorem ipsum dolor...</p> <a href="#" class="button">Tenticals</a> </div> <div> <figure> <img src="images/crab-icon.png" alt="Crab"> </figure> <h2 class="column-title">The Crab</h2> <p>Lorem ipsum dolor...</p> <a href="#" class="button">Crabby</a> </div> <div> <figure> <img src="images/whale-icon.png" alt="Whale"> </figure> <h2 class="column-title">The Whale</h2> <p>Lorem ipsum dolor...</p> ...
Read now
Unlock full access