How to Use TwitterVision on My Own Site
You can easily embed TwitteVision on your own website, so your visitors can use it without leaving the page. Webmasters typically include a link or button that externally redirects the user to the TwitterVision site, but you can simply embed it to offer the same or similar experience. You will use the HTML Iframe tag to embed the TwitterVision site into yours.
Instructions
-
-
1
Launch a text or HTML editor on your computer and open a new document.
-
2
Set up the document with the proper HTML header information, which should look similar to this:
<html>
<head>
</head>
<body> -
-
3
Insert the following two lines of code immediately after the <body> tag:
<iframe src="http://www.twittervision.com" width="650" height="450" scrolling="no">
</iframe> -
4
Insert two more lines of code at the bottom of the HTML document:
</body>
</html> -
5
Save the file with any file name you like, but make sure it includes the HTML file extension. For example, the file name should look similar to this: twittervision.html.
-
1
Tips & Warnings
If you would like to make the embedded TwitterVision widget display full screen, then change both the "width" and "height" parameters to contain "100%" as the value.
The scrolling parameter in the Iframe tag controls whether scrollbars appear. The value may be "yes," "no" or "auto." For this task, it is best to leave "scrolling" as "no."