I am trying to add a custom font to a webpage. I am using Google Chrome.
I am specifying the path in my CSS like so:
@font-face {
font-family: ottosans_regular;
src: url(../Content/Fonts/ottosans-regular-1v32-webfont.woff);
}
And applying it like so:
body {
font-family: ottosans_regular;
background-color: #F0F0F0;
}