Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Is it possible to embed a Twine story in a tumblr post?

Is there a way you can have a Twine story directly in a tumblr rather than just having a link to it.

Comments

  • You can use an iFrame element to ember one web-page (Twine HTML file) inside another. (Tumblr page)

    I don't have a tumblr account but this article seems to explain how to add an iFrame element to a tumblr page.

    Your iFrame element would look something like the following:
    <iframe src="http://yourhost.com/yourstory.html"; width="640" height="480" marginwidth="0" marginheight="0" frameborder="no" scrolling="yes">
    </iframe>
    

    You will need to change yourhost.com and yourstory.html to whatever your host website is and whatever you named your story HTML file. You will also need to change the iFrame's width and height properties to whatever size you want.
  • Thanks, I tried doing something similar but I didn't understand how the iframe worked.
  • I noticed the text is the same colour as the background. You might want to change that.
Sign In or Register to comment.