html5<embed> tag
Translation results:
embed
英[ɪm'bed] 美[ɛmˈbɛd]
vt.&vi.Embed... into; plant; leave deep (in memory)
html5<embed> tagsyntax
Function: The <embed> tag defines embedded content, such as plug-ins.
Parameters:
Attribute | Value | Description |
height | pixels | Sets the height of embedded content. |
src | url | The URL of the embedded content. |
type | type | Defines the type of embedded content. |
width | pixels | Sets the width of the embedded content. |
html5<embed> tagexample
<!DOCTYPE HTML> <html> <body> <embed src="http://img.php.cn/upload/article/000/005/656/5af270fd37755429.jpg" /> </body> </html>
Click the "Run instance" button to view the online instance