Result Size: 625 x 534
x
 
<!DOCTYPE html>
<html>
<head>
<style>
p::before { 
  content: "Read this -";
}
p#hometown::before { 
  content: normal;
}
</style>
</head>
<body>
<p>我叫唐纳德</p>
<p id="hometown">我住在达克斯堡</p>
</body>
</html>