We know that when assigning values to attributes, we put the values in double quotes. Like this:

<tagname attr="abc">

If there is a double quote in the value, you go:

<tagname attr='ab"c'>

If there is a single quote, it's as the first one:

<tagname attr="ab'c">

Here's the question. What if the value has both single and double quotes?