Open In App

HTML | <embed> height Attribute

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

Syntax: 



<embed height = "pixels">

Attribute Values:

Example: 






<!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:

Article Tags :