<!DOCTYPE html> <html> <head> <style> .block{ width:500px; height:500px; background-color: lightblue; color:red; } // Here the comment is present and the block is being designed </style> </head> <body> <div class="block"> You can see the comment in style tag. </div> </body> </html>
Run
×
Share