+ 2
Sublime text3
I’m currently using Sublime text to code html but I cannot code css in there. For the example the font size cannot be registered. Someone pls help🙂.
2 ответов
+ 11
You'll have to link the CSS file in the HTML file also
Add this in your head tag ~
<link href="yourFileName.css" rel="stylesheet" type="text/css">
Remember, the CSS file should be in the same folder as your HTML file or you should give the full address to file.
+ 1
thank you 🙏🏽