#CSS text , not on hmtl page
#
##########################
Page HTML
##########################
<p class="impatients">
test css <br>
there is an icon and some text here on the left (this text can not be selected nor be found in the HTML source code)
</p>
<link href="testcss.css" rel="stylesheet" media="all" type="text/css">
##########################
Page CSS
##########################
testcss.css
.impatients:before {
content : 'For the impatients :';
color : #dd0044;
text-decoration : underline;
margin-right : 0.3em;
text-shadow : 0 0 0.1em #f08;
}
.impatients:after {
content : url('./favicon.png');
float : left;
}