Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
How to embed a . . .?
If I were to have a picture and a link and save them as one html file, then I got that hosted on a web server, could I make a code to embed that html file on another website? Say my friend wanted to put that file on his website could he embed that code? Please explain, and an idea on how the code should look would help.
1 Answer
- 1 decade agoFavorite Answer
A) Give your friend a copy of the source code to put in his page.
Using this method, your friend's webpage would be referencing the image off of your site.
The following code is all he needs:
<a href="http://www.link.com/%22%3E%3Cimg src="http://yoursite.com/image.jpg%22 /></a>
B) Use an iframe.
Using this method, your friend's page has a little version of your page embedded inside it.
This is the code to use an iframe:
<iframe src="http://yoursite.com/page.html%22%3E
</iframe>