الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> a[href^="https"] { color: dodgerblue; } </style> </head> <body> <h2>CSS [attribute^="value"] Selector</h2> <p>Links with href value starting with "https" will have dodgerblue color.</p> <a href="http://harmash.com">Harmash</a> <a href="https://harmash.com">Harmash</a> </body> </html>