"All CSS files should be linked using the href attribute."
Description
This PR addresses the issue of linking the CSS file using the href attribute in the HTML file glitch/404.html. The changes include creating a new CSS file, moving the CSS code from the HTML file to the new CSS file, and updating the HTML file to link the CSS file using the href attribute.
Summary of Changes
Created a new file glitch/css/404.css to store the CSS code.
Moved the CSS code from glitch/404.html to glitch/css/404.css.
Updated glitch/404.html to remove the CSS code and added the following line to link the CSS file: <link rel="stylesheet" type="text/css" href="css/404.css" />.
PR Feedback (click)
I created this PR to address this rule:
"All CSS files should be linked using the
href
attribute."Description
This PR addresses the issue of linking the CSS file using the
href
attribute in the HTML fileglitch/404.html
. The changes include creating a new CSS file, moving the CSS code from the HTML file to the new CSS file, and updating the HTML file to link the CSS file using thehref
attribute.Summary of Changes
glitch/css/404.css
to store the CSS code.glitch/404.html
toglitch/css/404.css
.glitch/404.html
to remove the CSS code and added the following line to link the CSS file:<link rel="stylesheet" type="text/css" href="css/404.css" />
.