Embed Media, Audio & Iframe
Embedding Audio
Use the <audio>
element to embed audio content:
<audio controls>
<source src="audio.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
Embedding Content with iframe
The <iframe>
tag is used to embed another HTML page or document:
<iframe src="https://www.example.com" width="600" height="400"></iframe>
Embedding Files with embed
The <embed>
element can be used to embed PDFs, media, or other documents:
<embed src="document.pdf" type="application/pdf" width="600" height="500">