HTML DOM Embed অবজেক্ট

  • পূর্ববর্তী পৃষ্ঠা <em>
  • পরবর্তী পৃষ্ঠা <fieldset>

Embed object

Embed object is a new object in HTML5.

Embed object represents the HTML <embed> element.

Access Embed object

You can access the <embed> element by using getElementById():

var x = document.getElementById("myEmbed");

try it yourself

Create Embed object

You can create an <embed> element by using the document.createElement() method:

var x = document.createElement("EMBED");

try it yourself

Embed object attributes

বৈশিষ্ট্য description
height set or return the value of the height attribute of the embed element.
src set or return the value of the src attribute of the embed element.
type set or return the value of the type attribute of the embed element.
width embed ইঞ্জেক্টের width বৈশিষ্ট্যের মান সংযোজন করা অথবা প্রত্যাহার করা।

স্ট্যান্ডার্ড বৈশিষ্ট্য ও ঘটনা

Embed অবজেক্ট স্ট্যান্ডার্ড সমর্থনবৈশিষ্ট্যএবংঘটনা

সংক্রান্ত পৃষ্ঠা

HTML শিক্ষাক্রম:HTML প্লাগইন

HTML রেফারেন্স ম্যানুয়েল:HTML <embed> ট্যাগ

  • পূর্ববর্তী পৃষ্ঠা <em>
  • পরবর্তী পৃষ্ঠা <fieldset>