xxxxxxxxxx
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example of Commenting Code in CSS</title>
<style>
h1 {
color: blue;
text-align: center;
}
/*
p {
font-size: 18px;
text-transform: uppercase;
}
*/
</style>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph of text.</p>
</body>
</html>