Hello All!
Are there particular web font libraries you can use in SharePoint?
Thanks!
Create a Custom Cascading Style Sheet and reference the file in your Master Page.
Font Squirrel is a great site for generating fonts:
http://www.fontsquirrel.com/tools/webfont-generator
In this Custom CSS you can use every font you like:
@font-face {
font-family: ‘custom-font’;
src: url(‘../font/custom-font.eot’);
src: url(‘../font/custom-font.eot?#iefix’) format(’embedded-opentype’),
url(‘../font/custom-font.woff’) format(‘woff’),
url(‘../font/custom-font.ttf’) format(‘truetype’),
url(‘../font/custom-font.svg#custom-font’) format(‘svg’);
font-weight: normal;
font-style: normal;
}
body {
font-family:’custom-font’;
}
or any other element…
I was looking to use a font I found on Google Fonts but it doesn’t seem to work. I’m just using the <link> tag in my HTML master page. I did notice some people use @fontface instead to load the fonts.
Hi Stephanie
If you customize the master page, you can use any web fonts you like. Did you have any in mind?