I am trying to display three gifs in a row, each taking up one-third of the width of the page. However, when I preview the page, the gifs appear tiny. I have set the divs to 32% each and the gifs should fill 100% of their respective div. Here is the code snippet I am working with:
<div id="3wizards" width=100% style="float:center">
<div id="w1" width=32% style="float:left">
<img src="wizard(1).gif" width=100%>
</div>
<div id="w2" width=32% style="float:left">
<img src="wizard(1).gif" width=100%>
</div>
<div id="w3" width=32% style="float:right">
<img src="wizard(1).gif" width=100%>
</div>
</div>
This is how it looks on the page: Image showing the three wizard gifs as small. https://i.stack.imgur.com/jq136.png
(While I could remove the divs altogether, I want to keep them in case I want to add text to one of the thirds in the future. So, I would like to figure out how to make it work with the current setup for potential future use.)