CSS smiley
Karimkhan
HTML
<div id="smiley1">☻</div>
<div id="smiley2">☻ </div><div id="smiley3">☻ </div>
CSS
#smiley1 {
-webkit-border-radius:50px;
background-color:rgba(0, 0, 0, 0);
color: red;
width:350px;
position: absolute;
text-align: center;
font-size: 20pt;
z-index: 9999;
}
#smiley2 {
-webkit-border-radius:50px;
background-color:rgba(0, 0, 0, 0);
color: blue;
width:350px;
position: absolute;
text-align: center;
font-size: 20pt;
z-index: 9999;
}
#smiley3 {
-webkit-border-radius:50px;
background-color:rgba(0, 0, 0, 0);
color: green;
width:350px;
position: absolute;
text-align: center;
font-size: 20pt;
z-index: 9999;
}