please help me look at my code,
Code:
<html>
<head>
<title>E-commerce Syllabus</title>
<style type="text/css">
h1 {color:blue; text-align: left; font-family: times; class="under"}
li em {color: red; text_decoration: underline}
span {font-size: 0.7em}
body {background-color: yellow}
p:first-line
{
color: #ff0000;
font-variant: small-caps
}
p:first-letter
{
color: #ff0000;
font-size:x-large
}
<link rel="stylesheet" type="text/css" href="first.css"> <!--doesn't work,help me >
</style>
</head>
<body>
...
</body>
</html>
the following is my first.css's code
Code:
p.ridge {border-style: ridge}
p.inset {border-style: inset}
@import url(second.css)
ul.disc {list-style-type: circle}
etc.
|