I'm developing a template using HTML5, and I want to align an aside
on the left and a section
on the right.
First question: Can I have only img
s inside a header
tag?
Second question: Can I have only img
s inside an aside
tag, or is the aside
tag useless and I should switch to figure
?
If this is all wrong, how should I organize this piece of code?
<header>
<img id="logo" src="css/images/logo.png" alt="logotipo">
<img id="slider" class="slider" src="css/images/slide_1.png" alt="logotipo">
</header>
<aside class="left float">
<img class="icon" src="css/images/icon.jpg" alt="licone">Name<br>
<img class="icon" src="css/images/icon.jpg" alt="licone">adress<br>
<img class="icon" src="css/images/icon.jpg" alt="licone">email<br>
<img class="icon" src="css/images/icon.jpg" alt="licone">phone<br>
</aside>
<section class="right float">
<article>
</article>
</section>