HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> .point{ color: red; } </style> </head> <body> <h1>CSS .class Selector</h1> <p>This is paragraph.</p> <p class="point">This is paragraph with className 'point'.</p> <div class="point">This is div with className 'point'.</div> </body> </html>
OUTPUT
×

Save as Private