Hi,
How to use font family "Gotham-Book" in css?
I have tried using it as below in the css file. The Css file is in location: "/_layouts/15/TestProject/CSS"
@font-face
{
font-family: 'Conv_GothamBook';
src: url('/_layouts/15/TestProject/Fonts/Gotham-Book.eot');
src: url('/_layouts/15/TestProject/Fonts/Gotham-Book.eot#iefix') format('embedded-opentype'),
url('/_layouts/15/TestProject/Fonts/Gotham-Book.ttf') format('truetype'),
url('/_layouts/15/TestProject/Fonts/Gotham-Book.svg#robotobold') format('svg');
font-weight: normal;
font-style: normal;
}
But the font "Gotham-Book" does not seem to be set.
How to set "Gotham-Book" font in CSS?
Thanks
Go to the complete details ...