Friday, May 23, 2014

HTML TUTORIAL PART 16

HTML TUTORIAL PART 16

PROBLEM:
LOOK AT THE FOLLOWING:

Hello World!
This paragraph is not affected by the style.


SOLVED:
THE CODE BELOW MADE THE HTML TIP:

<!DOCTYPE html>
<html>
<head>
<style>
#para1
{
text-align:center;
color:red;
}
</style>
</head>

<body>
<p id="para1">Hello World!</p>
<p>This paragraph is not affected by the style.</p>
</body>


</html>

No comments:

Post a Comment