HTML DOM Meta অবজেক্ট

  • পূর্ববর্তী পৃষ্ঠা <menuitem>
  • পরবর্তী পৃষ্ঠা <meter>

Meta object

The Meta object represents the HTML <meta> element.

Access Meta object

You can access the <meta> element using getElementsByTagName():

var x = document.getElementsByTagName("META")[0];

try it yourself

Create Meta object

You can create a <meta> element using the document.createElement() method:

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

try it yourself

Meta object attributes

অ্যাট্রিবিউট description
content set or return the value of the content attribute of the meta element.
httpEquiv set or return the HTTP header of the information in the content attribute.
name set or return the name of the information in the content attribute.
স্কিম

HTML5-এ সমর্থিত নয়

content অ্যাট্রিবিউটের মান নির্ধারণ করা অথবা প্রদান করা

স্ট্যান্ডার্ড অ্যাট্রিবিউট ও ইভেন্ট

Meta ওবজেক্ট স্ট্যান্ডার্ডকে সমর্থন করেঅ্যাট্রিবিউটএবংইভেন্ট

সংশ্লিষ্ট পৃষ্ঠা

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

  • পূর্ববর্তী পৃষ্ঠা <menuitem>
  • পরবর্তী পৃষ্ঠা <meter>