HTML Tutorial
The <mark>
tag is used to highlight text as important or relevant. It visually stands out from the rest of the text, making it easy to locate and draw attention to.
<mark>Important Notice</mark>
Simple HTML Example
<!DOCTYPE html>
<html>
<head>
<title>Example of <mark> Tag</title>
</head>
<body>
<h1>Important News</h1>
<p>This is a <mark>very important</mark> announcement.</p>
</body>
</html>