
previous

page 2
next
Download this file into your project_2 directory and unzip it.
This should end up as a counters directory.
You should now have 10 images - 9 counters and an empty.
Double click on your new index.html to open it in your browser
Not much to see, eh? What we need is a border around the empty image.
CSS allows us to do that - like this:
<style>
img {
border:thin solid;
}
</style>
<img src='counters/0.png'>
<img src='counters/0.png'>
<img src='counters/0.png'>
<img src='counters/0.png'>
<img src='counters/0.png'>
img {
border:thin solid;
}
</style>
<img src='counters/0.png'>
<img src='counters/0.png'>
<img src='counters/0.png'>
<img src='counters/0.png'>
<img src='counters/0.png'>
previous
next