ok, im making an html site. i put 2 pics on my page. one is on one line, and...

The img element is an inline-level element; the two images will appear next to each other on the same line if there's room. Have you inserted a line break between them (using a <br> element, for example) or placed either one in a block-level element (like a <p> element)?
 
The img element is an inline-level element; the two images will appear next to each other on the same line if there's room. Have you inserted a line break between them (using a <br> element, for example) or placed either one in a block-level element (like a <p> element)?
 
Back
Top