CSS Comment
A CSS comment begins with "/*" and ends with "*/".
/* This is a comment */
/*
This is a comment
This is a comment
*/
These comments are ignored by the browser.
<html>
<head>
<title>TAG index</title>
<style type="text/css">
/* Document header */
#header {
background-color: #f9f9f9;
border: 1px #c0c0c0 solid;
margin-bottom: 10px;
}
h1 { font-size: 140%; color: red; } /* Heading styles */
#main p { line-height: 120%; } /* Main paragraph */
</style>
</head>
<body>
</body>
</html>