<!DOCTYPE html>
<html>
<head>
<style>
/* This is a single-line comment */
p {
color: red;
}
</style>
</head>
<body>
<p>Hello code family!</p>
<p>This paragraph is styled with CSS. and code family</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<style>
/* This is
a multi-line
comment */
p {
color: red;
}
</style>
</head>
<body>
<p>Hello code family!</p>
<p>This paragraph is styled with CSS. and code family</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<style>
p {
color: red; /* Set text color to red */
}
</style>
</head>
<body>
<p>Hello World! code family</p>
<p>This paragraph is styled with codesfamily</p>
</body>
</html>