css - How to include a non-standard font-face in azure? -


i'm new cloud , azure matter , made first deployment company work today.

it's located @ http://fleetcarma.cloudapp.net until able domain name verify azure servers.

so weird, when run web service locally, or deployed on iis, font want use works. when deployed azure, doesn't , defaults times new roman of sorts.

i've included different font types too.

here css:

@font-face { font-family: 'slatestdbk'; src: url('/content/actexpo/slatestd-bk1-webfont.eot'); src: url('/content/actexpo/slatestd-bk1-webfont.eot?#iefix') format('embedded-opentype'),      url('/content/actexpo/slatestd-bk1-webfont.woff') format('woff'),      url('/content/actexpo/slatestd-bk1-webfont.ttf') format('truetype'),      url('/content/actexpo/slatestd-bk1-webfont.svg#slatestdbk') format('svg'); font-weight: normal; font-style: normal; } 

i've included fonts in content folder. i've seen this: how can install custom fonts on windows azure?, wouldn't work me because have draw text, correct?

if out, grateful. thank in advance.

thanks @seva titov, had same problem, after selecting "content" under build action on properties, worked charm!


Comments