HTML Coding

11/21/2013 08:09 sako456#1
Hey guys, I have a problem im trying to find out how to put two pictures next to each other on the same line, I cant seem to do so either one of them keeps dropping to the bottom line I tried everything i cant seem to do it. Any help will be appreciated.

P.S. Sorry if im writing on the wrong part of the forum.
11/21/2013 14:58 info.student#2
hi sako456, try to use css. Should be easier!
11/21/2013 15:09 NoVision#3
There are much methods...

Here is one:

CSS:
Code:
.img
{
	width:200px;
}

.img img
{
	float:left;
}
HTML:
Code:
<div class="img">
	<img src="image.png" width="100" height="100"/>
	<img src="image2.png" width="100" height="100"/>
</div>
11/26/2013 04:58 sako456#4
Thanks guys ill try these right now and get back ASAP and tell you if it worked.