Open In App

HTML | <embed> width Attribute

Last Updated : 15 Jul, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

The HTML embed width attribute is used to specify the width of the embedded content. 

Syntax: 

<embed width="pixels">

Attribute Values:

  • pixels: The width of embed value are set in terms of pixels. It is used to specify the width of embedded content.

Example: 

html
<!DOCTYPE html> 
<html> 

<head> 
    <title>HTML embed width Attribute</title> 
    
    <style> 
        q { 
            color: #00cc00; 
            font-style: italic; 
        } 
    </style> 
</head> 

<body> 
    <h1>GeeksforGeeks</h1> 
    
    <h2>HTML embed width Attribute</h2>
    
    <embed src="loading2.swf" width = "400px"
           type="application/x-shockwave-flash"> 
</body> 

</html>

Output:

  

Supported Browsers: The browsers supported by HTML embed width Attribute are listed below:

  • Google Chrome 1 and above
  • Edge 12 and above
  • Internet Explorer 6 and above
  • Firefox 1 and above
  • Safari 4 and above
  • Opera 12.1 and above

Next Article

Similar Reads