Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <mark> Tag


Example

Highlight parts of a text:

<p>Do not forget to buy <mark>milk</mark> today.</p>
Try it Yourself »

Definition and Usage

The <mark> tag defines marked text.

Use the <mark> tag if you want to highlight parts of your text.


Browser Support

The numbers in the table specify the first browser version that fully supports the element.

Element
<mark> 6.0 9.0 4.0 5.0 11.1

Global Attributes

The <mark> tag also supports the Global Attributes in HTML.


Event Attributes

The <mark> tag also supports the Event Attributes in HTML.


Related Pages

HTML tutorial: HTML Text Formatting

HTML DOM reference: Mark Object


Default CSS Settings

Most browsers will display the <mark> element with the following default values:

Example

mark {
  background-color: yellow;
  color: black;
}
Try it Yourself »