Tujuan Teg Benam dalam HTML adalah untuk memaparkan sumber atau aplikasi luaran. Ini digunakan kebanyakannya dalam kandungan multimedia seperti menunjukkan fail video atau fail audio ke dalam aplikasi HTML kami. Teg ini juga digunakan untuk mengimport pemalam seperti animator kilat. Teg ini diperkenalkan dalam versi HTML 5. Ia mempunyai teg penamat seperti
dll.
Contoh Masa Nyata: Kami telah melihat begitu banyak tapak web yang mengandungi fail media dalam tapak web tersebut. Tag biasa tidak disokong untuk memaparkan fail media. Jadi kami telah menggunakan teg benam untuk semua jenis fail media dalam HTML.
Nota: Teg ini juga digunakan untuk memasukkan imej dan fail html luaran.
Bagaimanakah Teg Benam Berfungsi dalam Html?
Kerja benam HTML berdasarkan 4 atribut. Atribut ini menentukan perkara yang perlu dilakukan oleh benam.
Sintaks:
<embed Required attributes>
Salin selepas log masuk
Atribut yang diperlukan:
1. ketinggian: Atribut ini digunakan untuk menentukan ketinggian elemen kandungan terbenam. Nilai ini dalam piksel.
Sintaks:
<embed height="value in pixels">
Salin selepas log masuk
2. lebar: Atribut ini digunakan untuk menentukan lebar elemen kandungan terbenam. Nilai ini dalam piksel.
Sintaks:
<embed width="value in pixels">
Salin selepas log masuk
3. src: Ia digunakan untuk membawa URL web, yang bermaksud digunakan untuk menentukan alamat web kandungan terbenam.
Sintaks:
<embed src="web URL">
Salin selepas log masuk
4. jenis: Atribut ini digunakan untuk menentukan jenis media seperti video atau audio.
Sintaks:
<embed type="type of media">
Salin selepas log masuk
Contoh Teg Benam dalam HTML
Berikut ialah contoh berikut yang disebut di bawah:
Contoh #1 – benamkan dengan imej
Kod:
<!DOCTYPE html>
<html>
<title>embed attribute</title>
<head>
<!-- CSS Code -->
<style>
p {
color: red;
border: 2px solid green;
font-size: 22px;
}
h1 {
color: orange;
text-align: center;
}
</style>
</head>
<body>
<h1>The embed tag introduction</h1>
<p>
The
<embed>
tag in HTML purpose is for displaying external resources or
applications. This is used mostly in multimedia content like showing
video files or audio files into out HTML application. This embed tag
is also used for importing plug-ins like flash animators. This embed
tag is introduced in HTML 5 version. It does have ending tag as like p
tag, <html>, <body>, <a> etc.
</p>
<p>Real Time Example: We have seen so many website contains media
files within that websites. Normal tag are not supported to display
media files. So we have used embed tag for all types of media files in
HTML.</p>
<h1>The embed tag Example</h1>
<embed src="d6.jpg" width="400" height="400">
</body>
</html>
Salin selepas log masuk
Output:
Contoh #2 – Benamkan dengan sumber html lain
Kod HTML: EmbedResource.html
<!DOCTYPE html>
<html>
<title>embed attribute</title>
<body>
<!-- Embed content from other html file -->
<embed src="Resource.html" width="1000" height="200">
</body>
</html>
Salin selepas log masuk
Kod HTML: Resource.html
<!DOCTYPE html>
<html>
<title>embed attribute</title>
<head>
<!-- CSS Code -->
<style>
p {
color: brown;
border: 2px ridge navy;
font-size: 22px;
}
h1 {
color: blue;
text-align: center;
}
</style>
</head>
<body>
<h1>The embed tag introduction</h1>
<p>
The
<embed>
tag in HTML purpose is for displaying external resources or
applications. This is used mostly in multimedia content like showing
video files or audio files into out HTML application. This embed tag
is also used for importing plug-ins like flash animators. This embed
tag is introduced in HTML 5 version. It does have ending tag as like p
tag, <html>, <body>, <a> etc.
</p>
<p>Real Time Example: We have seen so many website contains media
files within that websites. Normal tag are not supported to display
media files. So we have used embed tag for all types of media files in
HTML.</p>
</body>
</html>
Salin selepas log masuk
Output:
Contoh #3 – Benamkan dengan fail video
Kod:
<!DOCTYPE html>
<html>
<title>embed attribute</title>
<head>
<!-- CSS Code -->
<style>
p {
color: brown;
border: 2px ridge navy;
font-size: 22px;
}
h1 {
color: blue;
text-align: center;
}
</style>
</head>
<body>
<h1>The embed tag introduction</h1>
<p>
The
<embed>
tag in HTML purpose is for displaying external resources or
applications. This is used mostly in multimedia content like showing
video files or audio files into out HTML application. This embed tag
is also used for importing plug-ins like flash animators. This embed
tag is introduced in HTML 5 version. It does have ending tag as like p
tag, <html>, <body>, <a> etc.
</p>
<p>Real Time Example: We have seen so many website contains media
files within that websites. Normal tag are not supported to display
media files. So we have used embed tag for all types of media files in
HTML.</p>
<!-- Embed content from other video file -->
<embed src="nationalgeography.mp4" width="400" height="300">
</body>
</html>
Salin selepas log masuk
Output:
Kesimpulan
Benam dalam HTML digunakan untuk memasukkan fail video dan audio ke dalam aplikasi HTML kami. Sumber benam luaran ini boleh diubah saiz mengikut keperluan kami dengan menggunakan atribut ketinggian dan lebar.
Atas ialah kandungan terperinci Benamkan Teg dalam HTML. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!