Skip to content
Advertisement

How to Link Css Externally In Virtual Studio Code

I am using VS code to make a website and it says Hello World! I am trying to use <link rel='stylesheet type='text/css' href='style.css'>. Except it is not linking correctly. In the css file I have h1{color:red;} but the h1 is not red. If I put the style tag inside the HTML file it does work. How would I link the css code externally?

JavaScript
JavaScript

How could I link the css file properly?

Advertisement

Answer

you need to adjust your css file path if your style.css is in css folder in same directory you need to <link rel="stylesheet" href="./css/style.css"> if you’re using windows you can simply click ctrl and hreflink, it’ll show you if path exist in that directory

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement