I'm having trouble adding a section tag where you have 3 squares next to each other.
<section id="blocos">
<div class="bloco-coloridos">
<h3>Vermelho</h3>
<h4>Azul</h4>
<h5>Verde</h5>
</div>
</section>
Now in css I'm programming as follows:
section#blocos{
display: block;
text-align: center;
}
section#blocos .blocos-coloridos{
display: inline-block;
vertical-align: middle;
margin: 0 0 1% 0;
padding: 2% 2%;
}