Embed
class Embed(attributes: Attributes, classes: ClassesInterface, src: SrcInterface, type: String) : AbstractTagBuilder<TagInterface> , EmbedInterface
In HTML, the <embed>
tag is used to embed external content, typically multimedia content such as audio, video, or interactive content, into an HTML document. The <embed>
tag was originally introduced in HTML 4.01 to provide a way to include external plugins or applets within a webpage. However, its usage has decreased in favor of more modern approaches such as the <audio>
, <video>
, and <iframe>
tags.
(ChatGPT, February 23, 2024)