Answers for "check mark in html"

8

html symbol check mark

<!-- 
   UNICODEU       +02713
   HEX CODE       &#x2713;
   HTML CODE      &#10003;
   HTML ENTITY    &check;
   CSS CODE       \2713 
-->
<!-- html example -->
<span> &#10003; </span>

<!-- // css example -->
span {
  content: "\2713";
}
Posted by: Guest on March-07-2021
1

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>
Posted by: Guest on March-14-2021

Browse Popular Code Answers by Language