I am currently work through the SMASHING HTML5 book and have come across a problem that book dosn't explain.
I am having problems getting two images on one page, I can get one image but can not get a second, have tried png.gif.fla and nothing at all, all I get is a box where the image is suppose to be but it is blank.
This is my first time dealing HTML code so I am new at it.
Here's the source code, maybe someone can see where I am going wrong,
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Sketch to Web</title>
</head>
<body>
<img src="logo.jpg" alt="logo"><br>
<a href="#">Toys</a> | <a href="#">Clothes</a>  | <a href="#">Sports</a> <br><br>
A good place to buy kids <br>
<br>
<img src"kid.png" alt="kid" align="left"> Kids are serious business.
They need toys that are both safe and educational. Toys need to be fun and allow children's mind to create beyond and functionality
the toy has. There is no reason that they cannot be both safe and fun.
Children need lots of clothes because the grow so fast. And they need sports to offset childhood obesity and
the illnesses associated with obesity. <br>
<br>
<a href="#">Toys</a> | <a href="#">Clothes</a> | <a href="#">Sports</a>
</body>
</html>