All for creating and promoting websites

Layout, programming, web tools

Generator Iframe

Generator Iframe

This online tool will create an iframe-a window for any links to the site. Just paste it into the form and click "Generate", then paste the HTML code in the correct place. You can also specify some attributes of our window.

Address frame

Width(px):


Height(px):


Прокрутка:

Align:

Border:

Your IFrame code:

Create Iframe in html

TTo create irame in html using the tag <iframe>. This tag has a "src" attribute, which is stored in the reference page.

A simple example of using:

    <iframe src="http://daruse.com/"></iframe>

But for correct display will use the attributes "width" and "height".

    <iframe src="http://daruse.com/" width="780px" height="300px" ></iframe>

Pasting this html-code to your site, we will see the following:

You can link to any page of any website and specify the desired width and height.

If you want to disable the iframe frame, use the attribute "frameborder".

    <iframe src="http://daruse.com/" width="780px" height="300px" frameborder="0"></iframe>
Highlight found mistake and press Ctrl + Enter to notify the administrator.