Adding quotation marks

by himel023

HTML

<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/::before -->

<q>Some quotes,</q> he said, <q>are better than none.</q>

CSS

q::before { 
  content: "aweae";
  color: blue;
}

q::after { 
  content: "kkkk";
  color: red;
}