1<style>
2mark {
3 background-color: yellow;
4 color: black;
5}
6</style>
7
8<mark>Highlighted text!!</mark>
1<!-- Highlight parts of a text: -->
2<p>Do not forget to buy <mark>milk</mark> today.</p>
3<!-- Default CSS: -->
4<head><style>
5mark {
6 background-color: yellow;
7 color: black;
8}
9</style></head>