<aside> ... </aside>


محتوى جانبي أو ملحق يدعم المحتوى الرئيسي.

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Inline CSS Aside Example</title>

</head>

<body>

<aside style="background-color: #f9f9f9; padding: 15px; border: 1px solid #ccc; border-radius: 4px; max-width: 300px; margin: 20px auto;">

<h3 style="margin-top: 0; color: #333;">Related Information</h3>

<p style="font-size: 14px; color: #666; line-height: 1.5;">

This aside contains supplementary content that complements the main content of the page. It can include related links, advertisements, or additional details.

</p>

</aside>

</body>

</html>

Inline CSS Aside Example