Anirudha Gupta
Anirudha Gupta

Reputation: 9299

How i can import LESS CSS in .net?

i want to use Google font in my own web page when i write on the top in LESS CSS File

@import url(http://fonts.googleapis.com/css?family=Kelly+Slab);

i got the error that

Illegal characters in path.

can someone tell me how i can use them in less css in my own asp.net project

Upvotes: 0

Views: 325

Answers (1)

Gabriele Petrioli
Gabriele Petrioli

Reputation: 196296

Try using single quotes around the actual url

@import url('http://fonts.googleapis.com/css?family=Kelly+Slab');

Upvotes: 1

Related Questions