Many people try to insert tick mark in their web site or web application. This mainly used in some tables and Grids.

By using Unicode tick mark or wrong Mark the alignments and font colors can be used and makes our coding much easier.

Below code helps in displaying these UNICODE tick and this also used in creating Unicode font type structures.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>AvanceZone</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
		<link type="text/css" href="css/ui-lightness/jquery-ui-1.8.5.custom.css" rel="stylesheet" />	
 
</head>
<body bgcolor="#FFFFFF">
<span style="font-family: ariel; color:green">
    &#10003; &#10004;
</span>
 
 
</body>
</html>