I'm new to the cloud and Azure for that matter and made my first deployment for the company I work for today.
It's located at http://fleetcarma.cloudapp.net currently until I am able to get the domain name to verify with the azure servers.
So something is really weird, when I run my web service locally, or deployed on IIS, the font that I want to use works. But when deployed to Azure, it doesn't and defaults to something like a times new roman of sorts.
I've included the different font types too.
Here is the 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 the fonts in the content folder. I've seen this: How can I install custom fonts on Windows Azure?, but that wouldn't work for me because I have to draw all the text, correct?
If anybody could help out, I would be really grateful. Thank you in advance.