Google News
logo
HTML5 Mark Tag
The HTML <mark> tag is used for indicating text as marked or highlighted for reference purposes, due to its relevance in another context.
Example :
	
<!DOCTYPE html>
<html>
     
    <head>
         <title>Mark Tag</title>
    </head>
     
    <body>
         <style type="text/css">
mark{ background:#FF0; padding:3px 5px;}
</style>
        <p>The HTML " mark " tag is used for indicating text as <mark> marked or highlighted</mark> for reference purposes, due to its relevance in another context.</p>
         
    </body>
     
</html>
Output :

The HTML " mark " tag is used for indicating text as marked or highlighted for reference purposes, due to its relevance in another context.