I found this example:
http://www.w3schools.com/cssref/tryit.asp?filename=trycss_sel_after
but instead of p having a separate css stylesheet, I want to do it in one like:
<p style = ":before:content: HELLO">My name is Donald</p>
OR
<p style = :before {content: HELLO}>I live in Ducksburg</p>
Is something like this possible? What is a correct way of doing it? I'm trying to use 'content' CSS property if possible.