Personal speech, beauty?
I'm a beginner, I ended up with a difficulty to align my checkbox, if anyone can give a hint how I should proceed, follow the excerpt from my HTML:
<li>
<label class="bloco">Deseja receber novidades por email:</label>
<input type="radio" name="novidade" checked /> Sim
<input type="radio" name="novidade" /> Não
</li>
<li>
<label class="bloco">Como nos encontrou?</label>
Indicação <input type="checkbox" name="divulg" /> <br>
Redes Sociais <input type="checkbox" name="divulg" /> <br>
E-mail <input type="checkbox" name="divulg" />
</li>
And CSS:
form#contato ul li label {
display: inline-block;
width: 80px;
font: 18px Lucida; }
form#contato ul li label.bloco {
display: block;
width: 50%;
margin: center;
height: 30px; }
label.bloco {
font-weight: italic;
font-family: lucida;
font-size: 18px; }