Thursday, May 22, 2014

HTML TUTORIAL PART 11

HTML TUTORIAL PART 11

PROBLEM:
LOOK AT THE FOLLOWING:

Hello World!
This paragraph is styled with CSS.
CSS comments are not shown in the output.



SOLVED:
THE CODE BELOW MADE THE HTML TIP:

<!DOCTYPE html>
<html>
<head>
<style>

/*This is a multiple
lines comment*/

p
{
color:red;
/*This is another comment*/
text-align:center;
}
</style>
</head>

<body>
<p>Hello World!</p>
<p>This paragraph is styled with CSS.</p>
<p>CSS comments are not shown in the output.</p>
</body>
</html>

No comments:

Post a Comment