I got really excited when I read this on Mozilla Publisher Network:
In HTML4, every section is part of the document outline. But documents are often not that linear. A document can have special sections containing information that is not part of, though it is related to, the main flow, like an advertisement block or an explanation box. HTML5 introduces the
<aside>element allowing such sections to not be part of the main outline.
I felt equally trumped when I came across this on HTML5 Doctor:
Navigation, ads, search boxes, blogrolls and so on are not directly related to the article and therefore do not justify the use of an
<aside>.
As such, after quite a bit of Googling, I realized that people have mixed opinions. Some agree with the use of <aside> for content like ads, but others don't.
Core Problem: I am building a technology blog, and ever since the beginning, I wanted the pages (including the articles) to be full-width. This gives me little chance to place an ad in it (Google really doesn't like "ads" in between an article's content).
And when I came across the <aside> element I thought I struck a gold mine until I saw the mixed opinions about its use for advertisements.
So, the question is, can someone knowledgeable shed some light on whether it is okay to use <aside> for advertisements? Also, are there any semantic alternatives (element or markup)?
asideproperty would help. :) – its_me Jun 10 '12 at 2:16