+ 1
How do I link a CSS file to a HTML file?
3 Answers
+ 2
<link rel="stylesheet" href="example.css">
+ 2
The html file and the css file must be in the same folder, after between the tag <head></head> in the html file :
<link rel="stylesheet" href="yourcssfile.css">
0
thank you