Editor Arrow Download Open
<!DOCTYPE html> <html> <head> <title>CSS class selector</title> <style> p.highlight { color:purple; font-size:20px; background-color:#FF6633; } </style> </head> <body> <p class="highlight">This is a paragraph line.</p> <div class="highlight">This is a paragraph Second line.</div> </body> </html>
  Preview Arrow