sudhakarinfotech
(current)
Run Code
Live Code Editor- CSS Single 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 Single Line Comment</title> <style type="text/css"> p { color: red; /* Providing text color to red */ } </style> </head> <body> <h1>This is an example of showing CSS single line comment.</h1> </body> </html>
Source Code Output :
Running