<footer> ... </footer>


تذييل الصفحة الذي يحتوي على معلومات إضافية مثل حقوق النشر أو روابط مفيدة.

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

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

<title>Inline CSS Footer Example</title>

</head>

<body>

<!-- Main content of the page goes here -->

<footer style="background-color: #222; color: #fff; text-align: center; padding: 20px; margin-top: 40px;">

<p style="margin: 0;">&copy; 2025 My Website. All Rights Reserved.</p>

<p style="margin: 5px 0 0;">

Designed by

<a href="https://clicksschool.com/" style="color: #f39c12; text-decoration: none;">My School</a>

</p>

</footer>

</body>

</html>

Inline CSS Footer Example

© 2025 My Website. All Rights Reserved.

Designed by My School