html text yellow highlight code example
Example 1: html highlight text
For HTML5: (with 'mark' tag)
<p>Do not forget to buy <mark>milk</mark> today.</p>
In CSS file: (To customize highlight)
mark {
background-color: yellow;
color: black;
}
Example 2: how to highlight text in css
<body>
<p>The Math test is on <mark>Friday</mark>.</p>
</body>