check mark in html code example
Example 1: html symbol check mark
<!--
UNICODEU +02713
HEX CODE ✓
HTML CODE ✓
HTML ENTITY ✓
CSS CODE \2713
-->
<!-- html example -->
<span> ✓ </span>
<!-- // css example -->
span {
content: "\2713";
}
Example 2: html mark
<!-- Highlight parts of a text: -->
<p>Do not forget to buy <mark>milk</mark> today.</p>
<!-- Default CSS: -->
<head><style>
mark {
background-color: yellow;
color: black;
}
</style></head>