Why <link rel = `stylesheet` href = `css/styles.css`/>
does not work but <link rel = "stylesheet" href = "css/styles.css"/>
does? Aren't backticks interchangeable with quotation marks?
Asked
Active
Viewed 10 times
0
-
2No. You can use either single-quotes (also known as apostrophes), i.e. `'`, or double-quotes, i.e. `"`. Backticks are not recognized as quotes in HTML. However, you *can* use backticks in Javascript. – kmoser Jul 07 '22 at 05:04
-
Absolutely, thanks a bunch! That's awesome. – Jul 07 '22 at 05:07