I want to make a notification icon on my website like facebook. Facebook shows a notification icon in the upper left corner. There are several notifications on the facebook next to the icon. I want to do the same. I want to show the number of notifications next to the notification icon, just like on facebook. I created the 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 this does not happen. Please help me how can I do this the same as on facebook. Thank.
source
share