how to highlight H1 in html code example
Example 1: css mark color
<style>
mark {
background-color: yellow;
color: black;
}
</style>
<mark>Highlighted text!!</mark>
Example 2: how to highlight text in css
<body>
<p>The Math test is on <mark>Friday</mark>.</p>
</body>