So last night was my first experience with using iFrame code. I was like a kid with a new toy.
Challenge: How to incorporate an external Website page into a Web page. Not illegally of course. What I was trying to do was to incorporate the server status that was generated by an external Website into a Website page. I first tried to copy the java script, code and stylesheet, but it completely destroyed the layout of the page. Then came across the magic of iFrame.
Can't believe it. All it takes is:
<iframe> </iframe>
Then drop in the website name "http:/name.com", the width of the frame,width=X, the height of the frame =Y seamless so it doesn't show any edges and frameborder=0 so it doesn't create a border
That was an awesome experience.
So while I was Googling all of this also arrived at this excellent tutorial by Eli the Computer Guy on YouTube, how to copy code to more than one Website. I didn't quite get all of it, but iframe is definitely my new hero :heart:
[video=youtube]
Challenge: How to incorporate an external Website page into a Web page. Not illegally of course. What I was trying to do was to incorporate the server status that was generated by an external Website into a Website page. I first tried to copy the java script, code and stylesheet, but it completely destroyed the layout of the page. Then came across the magic of iFrame.
Can't believe it. All it takes is:
<iframe> </iframe>
Then drop in the website name "http:/name.com", the width of the frame,width=X, the height of the frame =Y seamless so it doesn't show any edges and frameborder=0 so it doesn't create a border
Code:
<iframe src="http://name.com/" width="698" height="730" frameborder="0" seamless> </iframe>
That was an awesome experience.
So while I was Googling all of this also arrived at this excellent tutorial by Eli the Computer Guy on YouTube, how to copy code to more than one Website. I didn't quite get all of it, but iframe is definitely my new hero :heart:
[video=youtube]