एचटीएमएल संदर्भ

वर्णमाला द्वारा HTML श्रेणी के अनुसार HTML एचटीएमएल ब्राउज़र समर्थन एचटीएमएल गुण HTML वैश्विक गुण एचटीएमएल घटनाक्रम एचटीएमएल रंग एचटीएमएल कैनवास एचटीएमएल ऑडियो/वीडियो एचटीएमएल कैरेक्टर सेट एचटीएमएल सिद्धांत एचटीएमएल यूआरएल एनकोड एचटीएमएल भाषा कोड एचटीएमएल देश कोड HTTP संदेश HTTP तरीके पीएक्स से ईएम कन्वर्टर कुंजीपटल अल्प मार्ग


HTML <मेटा> http-equiv विशेषता

❮ एचटीएमएल <मेटा> टैग

उदाहरण

दस्तावेज़ को हर 30 सेकंड में ताज़ा करें:

<head>
  <meta http-equiv="refresh" content="30">
</head>

परिभाषा और उपयोग

विशेषता विशेषता की http-equivजानकारी/मान के लिए एक HTTP शीर्षलेख प्रदान करती contentहै।

विशेषता का http-equivउपयोग HTTP प्रतिक्रिया शीर्षलेख को अनुकरण करने के लिए किया जा सकता है।


ब्राउज़र समर्थन

Attribute
http-equiv Yes Yes Yes Yes Yes

वाक्य - विन्यास

<meta http-equiv="content-security-policy|content-type|default-style|refresh">

गुण मान

Value Description
content-security-policy Specifies a content policy for the document.

Example:

<meta http-equiv="content-security-policy" content="default-src 'self'">

content-type Specifies the character encoding for the document.

Example:

<meta http-equiv="content-type" content="text/html; charset=UTF-8">

default-style Specified the preferred style sheet to use.

Example:

<meta http-equiv="default-style" content="the document's preferred stylesheet">

Note: The value of the content attribute above must match the value of the title attribute on a link element in the same document, or it must match the value of the title attribute on a style element in the same document.

refresh Defines a time interval for the document to refresh itself.

Example:

<meta http-equiv="refresh" content="300">

Note: The value "refresh" should be used carefully, as it takes the control of a page away from the user. Using "refresh" will cause a failure in W3C's Web Content Accessibility Guidelines.


❮ एचटीएमएल <मेटा> टैग