<mark> tag is new tag in html5. It will be used to marked important text in document. Whenever you want to highlight some portion of text in your document then we will use mark tag.
Following example will represents use of mark tag in html5
<body>
<form>
<p>
Hello, This is a demonstration of <mark>mark</mark>
tag in <mark>html5</mark>.
</p>
</form>
</body>
Anonymous User
22-Jul-2019Thank You.