When one goes to Google images, then selects an image it creates an overlay over the images webpage. On the left there is the page and on the right is a panel made by Google. What is the name for that panel? Anyone have any tutorials on how to make something similar.
I want to have my text on the left, and the webpage on the right. What are the legalities behind this? In particular I want to do it over Google search results. Sot that the search results are on the right, and my content would be on the left.
It’s called a frame.
You can make one with the
<frame>or<iframe>tags, or by fetching the content of a remote site (via JavaScript or server-side), and then integrating it into your site layout.The legalities depend on the method you use. If you use a
frametag, you’re not touching the remote site at all, so you’re almost certainly OK.