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 myPara">This is paragraph with className 'point'.</p> <div class="point myPara">This is div with className 'point'.</div> <p><strong>Note</strong>: Elements may contain more than one class.</p> </body> </html>
OUTPUT
×

Save as Private