Monday, 9 September 2013

error with img selector

error with img selector

here is my HTML code
<!DOCTYPE html>
<html>
<head>
<title>Result</title>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
</head>
<body>
<h1>testing css</h1>
<p>this text shows the paragrpah going under css</p>
<img src = "http://images.wikia.com/glee/images/1/1d/ImaFes.jpg" />
</body>
</html>
and here is my CSS code
h1 {
font-family: Verdana, sans-serif , serif;
color:#576D94;
}
p {
font-size:18px;
color: #4A4943;
font-family: Garamond, serif;
}
img {
height=100px;
width=300px;
border=1px solid #4682b4;
}
the error i found is with img selector. the editor shows an empty rule on
img selector line. hope i didn't do anything wrong with img selector.
sorry if any grammatical errors

No comments:

Post a Comment