Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of attribute selector</title> <style> [title] { color:blue; } </style> </head> <body> <h1 title="heading">Attribute Selector</h1> <p title="paragraph">The color of this paragraph will be red.</p> </body> </html>