+ 7
how to link a CSS file with html File
Iâve tried External CSS, But it doesnât work.
2 Answers
+ 3
Inside of the head of your html you will need to type
<link rel="stylesheet" href="FILEPATH/FILENAME.css" type="text/css">
The attributes can be in any order.
Its worth taking a look at sololearns CSS course, it covers linking external stylesheets and alot more basic CSS knowledge.
+ 13
Thank you very much