Which of the following tag will help you highlight a text line? code example
Example 1: mark tag in html
mark {
display: inline-block;
line-height: 0em;
padding-bottom: 0.5em;
}
Example 2: how to highlight text in css
<body>
<p>The Math test is on <mark>Friday</mark>.</p>
</body>