Thursday, May 22, 2014

HTML TUTORIAL PART 14

HTML TUTORIAL PART 14

PROBLEM:
LOOK AT THE FOLLOWING:

This heading will not be affected

This paragraph will be red and center-aligned.

SOLVED:
THE CODE BELOW MADE THE HTML TIP:

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

<body>
<h1 class="center">This heading will not be affected</h1>
<p class="center">This paragraph will be red and center-aligned.</p>
</body>
</html>

No comments:

Post a Comment