Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I view a part of an other website on my website?

I want to show a specific part of an external website on my website.

specific part of an external website

How do I do this? Can this action be illegal in some way?

**no embed available on this website. It looks pretty old too.

like image 213
Imnotapotato Avatar asked Sep 18 '25 15:09

Imnotapotato


2 Answers

<div id="ab"><iframe src="//hodekar.tk"></iframe></div>
and this css
#ab {
display : block;
overflow : hidden}
iframe{
margin: -50px -60px}
use minus margin so it will goes in that div and unuseful content will not be displayed in webpage. specify height of div and iframe

like image 161
Rahiil Avatar answered Sep 21 '25 10:09

Rahiil


im not sure if u can do that.. der may be a few privacy issue.. But u can show a different page in you webpage by using the iframe tag. http://www.w3schools.com/tags/tag_iframe.asp Or HTML 5 supposrt video tags.. So if you can download the video u can display it using the video tags.. http://www.w3schools.com/html/html5_video.asp

like image 38
KevinPB Avatar answered Sep 21 '25 08:09

KevinPB