Saturday, May 21, 2011

Tips & Tricks: Changing the site address using HTML FRAMES

To change the site address or do redirection using your own URL, you can use HTML FRAMES.

All you need to do is to supply the site address on source attribute of the FRAME and set the columns and rows to 100%.


<html>
<frameset cols="100%">
<frameset rows="100%">
<frame src="http://www.google.com/">
</frameset>
</frameset>
</html>


Hope this post helps you!

No comments:

Post a Comment