Tuesday, 3 May 2016

Belajar HTML Mudah Pemula Chapter 15 ( End )

Memasukkan Halaman Lain dengan iFrame

Jika pada artikel sebelumnya kita bekerja dengan frame dimana halaman frameset-nya hanya sebagai wadah saja tanpa kita bisa menambah apapun didalamnya. Maka pada artikel kali ini kita akan mencoba memasukkan halaman lain atau web lain ke dalam sebuah kotak di dalam halaman web kita. Dengan begitu, kita bisa menampilkan web lain di web kita tanpa takut kehilangan tampilan asli web.
Dan inilah kode untuk menampilkan iframe seperti diatas:
<iframe src="http://m.4shared.com/" width="100%" height="400">
Browser anda tidak support frame
</iframe>
iframe memiliki beberapa atribut. Dalam contoh diatas saya menggunaka atribut SRC untuk menentukan halaman apa yang ingin dimuat, WIDTH adalah lebar frame-nya dan HEIGHT adalah tinggi.
Selain itu ada beberapa atribut lain yaitu:
ATTRIBUTEVALUEDESCRIPTIONDTD
alignleft
right
top
middle
bottom
Deprecated. Use styles instead.
Specifies the alignment of an iframe according to surrounding elements
TF
frameborder1
0
Specifies whether or not to display a border around an
iframe
TF
heightpixels
%
Specifies the height of an iframeTF
longdescURLSpecifies a page that contains a long description of the
content of an iframe
TF
marginheightpixelsSpecifies the top and bottom margins of an iframeTF
marginwidthpixelsSpecifies the left and right margins of an iframeTF
namenameSpecifies the name of an iframeTF
scrollingyes
no
auto
Specifies whether or not to display scrollbars in an iframeTF
srcURLSpecifies the URL of the document to show in an iframeTF
widthpixels
%
Specifies the width of an iframeTF
Mudah-mudahan bermanfaat ya

0 comments:

Post a Comment