I want to make a notification icon on my website like facebook. Facebook shows you notification icon on the top left corner. On facebook, there is number of notifications beside the icon. I want to make the same thing. I want to show the number of notifications beside the notification icon just like facebook. I have created this code for this:
<style>
.icon {
width:30px;
height:30px;
}
.txt {
padding:-10px 0 0 10px;
background:red;
font-size:xx-small;
}
</style>
<div class="icon">
<img src="icon.bmp" alt="none" width="100%" height="100%" />
<div class="txt">10</div>
</div>
But it is not happening. Please anyone help me how can I make it same like facebook. Thank You.