Input
Output
<html> <head> <style> /* This is a comment in CSS */ .container { width: 80%; margin: auto; background-color: #fff; padding: 20px; border: 1px solid #ccc; } h1 { color: #333; text-align: center; } p { font-size: 18px; color: #666; }</style> </head> <body> <div class="container"> <h1>Welcome to onlinetpoint</h1> <p>CSS Syntax refers to the rules that define how styles are written to be applied to elements.</p></div> </body></html>