الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> a[target] { background: dodgerblue; color: white; text-decoration: none; padding: 5px 10px; } </style> </head> <body> <h2>CSS [attribute] Selector</h2> <p>Links with "target" attribute will have dodgerblue background color.</p> <a href="https://twitter.com">Twitter</a> <a href="https://google.com" target="_blank">Google</a> <a href="https://youtube.com">Youtube</a> </body> </html>