Images
For images you use theimg
element.
This element has an attribute named src
where you specify
the URL of the image. Here is an example:
<img src="http://throw-platform.github.com/img/turkey.png" />
To add gravity we need to grav
tag.
<img class="grav" src="http://throw-platform.github.com/img/turkey.png" />
In order to get a URL for an image on your computer you can use http://imgur.com to host the image and then include the URL which ends in ".png".
To find images you can use Google Image Search http://image.google.com. When you find an image you like right click to find the URL.
Things that won't work
The URL is wrong. You must specifyhttp://
exactly as it appears:
<img src="ttp://throw-platform.github.com/img/turkey.png" />
The URL is wrong. The URL must be something that works when you put it in a browser:
<img src="turkey.png" />