aside tag in html
The <aside> tag defines some content aside from the content it is placed in.
The aside content should be related to the surrounding content.
<!DOCTYPE html>
<html>
<body>
<aside>
<h4>Epcot Center</h4>
<p>The Epcot Center is a theme park in Disney World, Florida.</p>
</aside>
<p><strong>Note:</strong> The aside tag is not supported in Internet
Explorer 8 and earlier versions.</p>
</body>
</html>
Output:
Note: The aside tag is not supported in Internet Explorer 8 and earlier versions.
Comments
Post a Comment