1 2 3 4 5 6 7 8 9 10 11 12 13
<!DOCTYPE html> <html> <head> <style> div { float: left; width: 200px; height: 200px; } img { display: block; margin-left: 100px; height: 100px; width: 100px; } </style> </head> <body> <div></div> <img src="../bugs/solidblue.png"> </body> </html>