This is from a tutorial html/css script, that seems bugged. can anoyone identify the problem?
<html>
<head>
<link rel="stylesheet" type="text/css"
href="style3.css/>
</head>
<body>
<p class="heading">text</p>
<p class="indent">text</p>
<p class="right">text</p>
<p class="left">text</p>
<p class="justify">text</p>
<p class="right">text</p>
</body>
</html>
This is the style sheet:
p.indent
{
text-indent: 100px;
color-red
}
p.right
{
text-align: right
}
p.left
{
text-align: left
}
p.justify
{
text-align: justify;
font-size: 150%
}
Thank you
Thank you! It works now.

Thank you! It works now.
