Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Enregistrer le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <head> <style> a[target] { couleur-de-fond: jaune; } </style> </head> <body> <h2>CSS [attribut] Sélecteur</h2> <p>Sélectionnez et stylisez les liens avec un attribut target :</p> <a href="https://www.w3schools.com/" target="_blank">W3schools.com</a> <a href="index.html">CSS</a> <a href="https://www.w3schools.com/html/" target="_blank">HTML</a> </body> </html>