Aside

Course- HTML5 >

Content in an aside element is slightly related to the content outside it. It can be used within an article element in cases where the content is relevant to the content in the article element. Though the content in the aside element is standalone by nature, it can provide additional information about the content around it.

Let's look at an example of an aside element using the following code snippet:

<!DOCTYPE html>

<html>

<body>

<article>

<h1> AITECHTONIC SITES </h1>

<section>

<h2> FASTREAD.IN </h2>

<P>Fastread originated from the idea that there exists a class of readers who respond fast and better to online content and prefer to learn new skills at their own pace from the comforts of their own rooms.

See more at.. http://fastread.in/</P>

</section>

<section>

<h2> FIXDOUBT.COM </h2>

<P> fixdoubt.com originated from the idea that there exists a class of readers who respond fast and better to online content and prefer to learn or submit new skills,things,lifstyles or any doubts at their own pace from the comforts of their own rooms. - See more at: http://fixdoubt.com/#sthash.OpuzbiTQ.dpuf

</P>

<P> User's right to do put question or answer's, articles, self thought about any subject in this site or etc... without any requirment such as login or logup.

- See more at: http://fixdoubt.com/#sthash.OpuzbiTQ.dpuf

</P>

</section>

<br>

<aside>

<p> <em> AITECHTONIC AS ARUCATE ITER TECHTONIC (HTTP://AITECHTONIC.COM)

</em> <p>

</aside>

 


</article>

</body>

</html>

The output of the code upon execution would look like this:

AITECHTONIC SITES

FASTREAD.IN

Fastread originated from the idea that there exists a class of readers who respond fast and better to online content and prefer to learn new skills at their own pace from the comforts of their own rooms. See more at.. http://fastread.in/

FIXDOUBT.COM

fixdoubt.com originated from the idea that there exists a class of readers who respond fast and better to online content and prefer to learn or submit new skills,things,lifstyles or any doubts at their own pace from the comforts of their own rooms. - See more at: http://fixdoubt.com/#sthash.OpuzbiTQ.dpuf

User's right to do put question or answer's, articles, self thought about any subject in this site or etc... without any requirment such as login or logup. - See more at: http://fixdoubt.com/#sthash.OpuzbiTQ.dpuf