Open In App

HTML | <embed> height Attribute

Last Updated : 15 Jul, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <embed> height attribute is used to specify the height of the embedded content. 

Syntax: 

<embed height = "pixels">

Attribute Values:

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

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML embed height Attribute
    </title>
     
    <style>
        q {
            color: #00cc00;
            font-style: italic;
        }
    </style>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
     
    <h2>HTML embed height Attribute</h2>
     
    <embed src="loading2.swf" width = "400px"
            height="300px"
            type="application/x-shockwave-flash">
</body>
 
</html>


Output:

 

Supported Browsers: The browsers supported by HTML embed height 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

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads