View Single Post
  #4  
Old 02-05-2014, 01:07 AM
squiggler's Avatar
squiggler squiggler is offline
Squiggling since 1995
 
Join Date: Jul 2013
Posts: 185
Gender: Unknown/Other
Credits: 8,203
squiggler is on a distinguished road
Default

How to use iFrame to integrate it into a website:
Find the page you want to put it on. Find the URL of the game you want. Use this code:
<iframe src="URL HERE" width="IN PIXELS" height="IN PIXELS">
<p>Your browser does not support iframes.</p>
</iframe>
The optional code will display if their browser does not support iframes. You can add a link here.
Note: you must start the URL with http:// or it won't work.
Note 2: With Quest's system, if the box isn't big enough, it sometimes won't display right.

Example: Go here and enter the below code.
I added the text you see if it doesn't support iframes above in case you wanted to check it out.

HTML Code:
<!DOCTYPE html>
<html>
<body>

<p>Your browser does not support iframes. Go <a href "http://make.textadventures.co.uk/Play/Play.aspx?id=28289" >here</a> to play this game on Quest.</p>

<iframe src="http://make.textadventures.co.uk/Play/Play.aspx?id=28289" width="700" height="700">
  <p>Your browser does not support iframes. Go <a href "http://make.textadventures.co.uk/Play/Play.aspx?id=28289" >here</a> to play this game on Quest.</p>
</iframe>

</body>
</html>
__________________
Avatar courtesy of Doll Divine.

Last edited by squiggler; 02-05-2014 at 01:13 AM.
Reply With Quote