does anyone know why the css won't work with the html?

dani

New member
here's the html:

<html>
<head>
<title>Blog</title>
<link rel="stylesheet"href="basic.css"type="text/css"/>
<marquee bgcolor="#cccccc" loop="-1" scrollamount="4" width="100%">BY: haha</marquee
</head>
<body>
<h1>SUPERPOWER</h1>
<style type="text/css">
p {text-indent:50px;}
</style>

<p>I know a lot. I walk into the classroom and I've already learned the whole lesson. I look at a person and I hear the sour thoughts running past their mind. Walking swiftly into the classroom, I take a seat. I look up and see Angelina "Why is she here?", I look deeper into her. Oh, her appointment was canceled. Dog died, poor girl. I haven't always been able to read people's mind. It just gradually grew in me, I feel awful learning the dark secrets of others, </p>
</body>
</html>





and now the css:

body
{
Background-color: gray ;
color: white ;
}

h1
{
font-family: monotype corsiva;
text-align: justify;
font-size:40px;

}

p
{
font-family: comic sans ms ;
}
 
Back
Top