I am aware that content can be displayed with css using content 
.email-address:before {
   content: "Email address: ";
}
But what if I wanted to do something like this:
.email-address:before {
   content: "<strong class='my text'>Email address:</strong>";
}
is this possible?
 
     
    