Atribut tag embed:
height: Ukuran tinggi resource yang diembed.
src: Sumber resource.
type: Tipe resource yang diembed, misalnya video swf, mov atau avi. Daftar tipe MIME yang dapat diembed bisa dilihat di sini.
width: Ukuran lebar resource yang diembed.
Sintax: <embed type="tipe_MIME" src="sumber_resource" width="angka" height="angka">
Contoh: embed.html
<!DOCTYPE HTMl>
<html>
<head>
<title>Tag embed HTML</title>
</head>
<body>
<embed type="application/x-shockwave-flash" src="videoku.swf" width="650" height="300">
</body>
</html>
Note: "videoku.swf" silahkan diganti dengan video Anda yang memiliki ekstensi swf.
Nilai atribut width dan height pada contoh di atas dituliskan secara langsung, selain itu bisa juga diatur dengan css.
<!DOCTYPE HTMl>
<html>
<head>
<title>Tag embed HTML</title>
<style type="text/css">
.embedWH{width:650px;height:300px;}
</style>
</head>
<body>
<embed type="application/x-shockwave-flash" src="videoku.swf" class="embedWH">
</body>
</html>
^Baca juga: Tag <fieldset> dan tag <legend> untuk mengelompokkan kontrol.
Referensi tulisan:
- <embed>; ditulis oleh: Tim MDN (Mozilla Developer Network), developer.mozilla.org, diakses 20 Oktober 2014.
About MDN by Mozilla Contributors is licensed under CC-BY-SA 2.5.
No comments:
Post a Comment