Use on the webTotal Use [ 3599 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/1404ab843fba37fa17b891f968a8daac?family=SansCollege" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/1404ab843fba37fa17b891f968a8daac?family=SansCollege);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "SansCollege";
src: url("https://db.onlinewebfonts.com/t/1404ab843fba37fa17b891f968a8daac.eot");
src: url("https://db.onlinewebfonts.com/t/1404ab843fba37fa17b891f968a8daac.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/1404ab843fba37fa17b891f968a8daac.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/1404ab843fba37fa17b891f968a8daac.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/1404ab843fba37fa17b891f968a8daac.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/1404ab843fba37fa17b891f968a8daac.svg#SansCollege")format("svg");
}
2CSS rules to specify fonts
font-family: "SansCollege";