Fungsi dan definisi Tag Iframe pada HTML
Menurut w3schools.com Iframe merupakan inline frame yang digunakan untuk mengambil tampilan (embed) halaman lain di sebuah halaman html.
Atribut yang tersedia pada tag iframe
Contoh Penggunaan Iframe
Catatan
Atribut yang tersedia pada tag iframe
| align | left right top middle bottom | Not supported in HTML5. Specifies the alignment of an <iframe> according to surrounding elements |
| frameborder | 1 0 | Not supported in HTML5. Specifies whether or not to display a border around an <iframe> |
| height | pixels | Specifies the height of an <iframe> |
| longdesc | URL | Not supported in HTML5. Specifies a page that contains a long description of the content of an <iframe> |
| marginheight | pixels | Not supported in HTML5. Specifies the top and bottom margins of the content of an <iframe> |
| marginwidth | pixels | Not supported in HTML5. Specifies the left and right margins of the content of an <iframe> |
| name | text | Specifies the name of an <iframe> |
| sandbox | "" allow-forms allow-same-origin allow-scripts allow-top-navigation | Enables a set of extra restrictions for the content in the <iframe> |
| scrolling | yes no auto | Not supported in HTML5. Specifies whether or not to display scrollbars in an <iframe> |
| seamless | seamless | Specifies that the <iframe> should look like it is a part of the containing document |
| src | URL | Specifies the address of the document to embed in the <iframe> |
| srcdoc | HTML_code | Specifies the HTML content of the page to show in the <iframe> |
| width | pixels | Specifies the width of an <iframe> |
<iframe src="http://google.co.id frameborder="1" height="100%"></iframe>
Catatan
- Penggunaan pada iframe biasanya digunakan untuk embed sebuah dokumen tertentu di sever yang sama.
- Penggunaan iframe kadang di salah gunakan untuk menambah Pageview halaman yang menjadi src, karena artibut src pada iframe akan menambahkan tampilan halaman source nya, jadi sama saja membuka 2 halaman.
- Penggunaan iframe kadang digunakan di SEO blackhat untuk menghancurkan serp lawan dengan unnatural visitor (bot)
Jadi gunakanlah kode frame dengan baik dan tidak merugikan bagi orang lain






