How to apply different properties to different paragraphs in CSS?
<!-- Here two ways are mentioned --> <!doctype html> <html> <head> <link rel="stylesheet" type="text/css" href="test.css"> </head> <body> <p id="one"><p>Sample Text one</p> <p id="two"><p>Sample Text two</p> <p class="three">Sample Text three</p> <p class="four">Sample Text four</p> </body> </html>