ShapeYourPath
(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" /> <meta name="description" content=""> <title>CSS Single Line Comment</title> <style type="text/css"> p { color: red; /* Set text color to red */ } </style> </head> <body> <h1>CSS Single Line Comment</h1> <p> CSS single line comment is written inside (/* Write Your Comment */).It is used to provide hints about CSS code and primarily used for screen readers. </p> </body> </html>
Output :
Running