HTML aside tag

PHOTO EMBED

Tue Feb 08 2022 09:05:24 GMT+0000 (Coordinated Universal Time)

Saved by @Arjun007 #html #css #javasc #java #php #sass

<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of HTML aside Tag</title>
</head>
<body>
	<h1>Apollo 13 Mission</h1>
	<p>This is paragraph</p>
	<p>[...]</p>
    <aside>
		<h1>Apollo 13 Facts</h1>
		<p>The aside element represents a section of the web page that encloses content which is tangentially related to the content around it.</p>
	</aside>
</body>
</html>


content_copyCOPY

The <aside>tag is used to provides information about the main content.it's makes it easy to design the page and it enhances the clarity of HTML document

https://elementtutorials.com/ref/aside.html