HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> #point{ color: red; } </style> </head> <body> <h1>CSS #id Selector</h1> <p id="point">This is paragraph</p> <div>This is div.</div> <p><strong>Note</strong>: It is not recommended to use multiple id with same name.</p> </body> </html>
OUTPUT
×

Save as Private