Hi I'm learning HTML/CSS andI'm wondering what the difference is between importing CSS from local files versus importing CSS from remote locations into an HTML document and what would that look like?
So far from what I believe and my understanding is when you import a CSS file from your local files is where
you'd add the <link rel="stylesheet" href="mycssfilename.css"> in the HTML document under the <head> tag, and should link to your style sheet you created in a code editor.
Importing CSS file from a remote location would be where you would add this code under the <head> tag <link href="https://www.yourdomain.com/foldername/styles.css"> for example and that would come from somewhere where it is stored on the web?
Correct me if I'm wrong, I'm just confused between the two. Thank you so much.