मार्क टैग html में

कोड उदाहरण

4
0

html पाठ पर प्रकाश डाला

For HTML5: (with 'mark' tag)

<p>Do not forget to buy <mark>milk</mark> today.</p> 

In CSS file: (To customize highlight)

mark {
  background-color: yellow;
  color: black;
}
1
0

एचटीएमएल में टेक्स्ट को कैसे हाइलाइट करें

<mark>text</mark>
1
0

सीएसएस मार्क रंग

<style>
mark { 
  background-color: yellow;
  color: black;
}
</style>

<mark>Highlighted text!!</mark>
0
0

html निशान

<!-- Highlight parts of a text:  -->
<p>Do not forget to buy <mark>milk</mark> today.</p>
<!-- Default CSS: -->
<head><style>
mark {
  background-color: yellow;
  color: black;
}
</style></head>
0
0

मार्क टैग html में

mark {
  display: inline-block;
  line-height: 0em;
  padding-bottom: 0.5em;
}

अन्य भाषाओं में

यह पृष्ठ अन्य भाषाओं में है

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................