Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

css import from another server

Tags:

import

css

it is possible to import the css file from another server? let's say i have my html on www.mysite.com can i import my css like this?

<link href="www.anothersite.com/style.css" rel="stylesheet" type="text/css"  />
like image 478
kmunky Avatar asked Oct 20 '25 04:10

kmunky


1 Answers

Yes, any full url is valid for css. You'll want to include http:// though.

<link href="http://www.anothersite.com/style.css" rel="stylesheet" type="text/css"  />
like image 124
sheats Avatar answered Oct 22 '25 18:10

sheats