0
Why css file doesn't work?
I just put an external css file in my html folder but it doesn't work. Why such case will happen and how should I deal with it?
2 Antworten
+ 1
Your HTML page must include a reference to the external style sheet file inside the <link> element, inside the head section. <link rel="stylesheet"type="text/css"href="style.css">
+ 1
Thanks, it works!