الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <!-- CSS بواسطة كود <hr> هنا قمنا بتحديد خصائص ظهور الوسم --> <style> hr { border: none; border-top: 3px double #333; color: #333; overflow: visible; text-align: center; height: 5px; } hr:after { background: #fff; content: '§'; padding: 0 4px; position: relative; top: -13px; } </style> </head> <body> <p>In Harmash.com you can learn every thing you need for free.</p> <hr> <!-- سيقوم المتصفح بعرض خط أفقي مكان هذا الوسم --> <p>You can learn Algorithms, Java, C++, Python, SQL etc..</p> </body> </html>