GA_27
3
Q:

how to highlight text in html

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;
}
3
<mark>text</mark>
1
<body>
<p>The Math test is on <mark>Friday</mark>.</p>
</body>
0

New to Communities?

Join the community