sudhakarinfotech
(current)
Run Code
Live Code Editor- CSS Multi Line Comment
Source Code
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>CSS Multi Line Comment</title> <style type="text/css"> p { color: red; font-size: 16px; font-weight: 400; /*Set text color to red and background-color to green and font-weight to 400 */ } </style> </head> <body> <h1>This is an example of multi line CSS comment.</h1> <p>Each paragraph having background color green and text color red.</p> </body> </html>
Source Code Output :
Running