Can I have an article and aside in a section?

It depends on the semantics of the content :grinning:.

If the links relate only to that article then consider using:

<article>
<p>Text</p>
<aside>
<a href="...">Link1</a>
<a href="...">Link2</a>
</aside>
</article>

If your <body> contains only one <section> consider using <main> instead.

3 Likes