Most likely it's because you didn't change the URLs in your HTML file. If you showed your source code, one could say for sure. Protip: Use relative URLs.
Search "olddomain" -> Replace "newdomain";
(in index.html)
<html>
<body>
<img src="http://[COLOR=#000000]domain.coolpage.biz/[/COLOR]name_of_pic.jpg">
</body>
</html>
(in index.html)
<html>
<body>
<img src="http://[COLOR=#000000]testdomain.lk[/COLOR][COLOR=#000000]/[/COLOR]name_of_pic.jpg">
</body>
</html>
You probably have it like this:
Code:(in index.html) <html> <body> <img src="http://[COLOR=#000000]domain.coolpage.biz/[/COLOR]name_of_pic.jpg"> </body> </html>
so you should just change it to this
Code:(in index.html) <html> <body> <img src="http://[COLOR=#000000]testdomain.lk[/COLOR][COLOR=#000000]/[/COLOR]name_of_pic.jpg"> </body> </html>
![]()
<div class="container_12" id="header-up"><div class="grid_12">
<div id="logo-wrapper"><a href="index.html" title="Site Name"><img alt="Site Name" src="/newdomain.lk/logo.png" /></a></div>
Hmm...are you sure that you have the pictures in the same folder as the index.html? And not a /images folder or something?