I was wondering if I could use Iframe to frame just a small portion of a page? like the video located on this site: http://www.chicagolandcadillacdealers.com/j/i/29604/EscaladeHybridVideo-Inventory.html If so how can this be done?
Offcourse u just have to put the iframe code wherever u want in the template <iframe src ="html_intro.asp" width="100%" height="300"> <p>Your browser does not support iframes.</p> </iframe> Code (markup):
It's difficult to display only part of the page using IFrame. You can parse the page code and can display part of the code or can use embed code on your web page to display video. <object height="400" width="550" codebase="http://www.apple.com/qtactivex/qtplugin.cab" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"> <param value="http://www.chicagolandcadillacdealers.com/video/mov/09555_400.mp4" name="SRC" /> <param value="true" name="AUTOPLAY" /> <param value="true" name="CONTROLLER" /> <embed height="400" width="550" pluginspage="http://www.apple.com/quicktime/download/" controller="true" autoplay="true" src="http://www.chicagolandcadillacdealers.com/video/mov/09555_400.mp4"></embed> </object> Code (markup):
Thanks Hostcoin that worked perfectly....now how would i do this from scratch. How do I know the height and width and all that....