Run
FEEDBACK
Rating
Message
SUBMIT
<!DOCTYPE html> <html> <head> <title>Classes and IDs Example</title> <style> .important { font-weight: bold; color: red; } #unique { color: blue; } </style> </head> <body> <p>This is a <span class="important">very important</span> message.</p> <p id="unique">This is a unique element with its own styling.</p> </body> </html>