Use on the webTotal Use [ 6603 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/466fc5634b0f8ded9dba4e36722116ca?family=Flinders+Trial+SemBd" 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/466fc5634b0f8ded9dba4e36722116ca?family=Flinders+Trial+SemBd);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Flinders Trial SemBd";
src: url("https://db.onlinewebfonts.com/t/466fc5634b0f8ded9dba4e36722116ca.eot");
src: url("https://db.onlinewebfonts.com/t/466fc5634b0f8ded9dba4e36722116ca.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/466fc5634b0f8ded9dba4e36722116ca.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/466fc5634b0f8ded9dba4e36722116ca.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/466fc5634b0f8ded9dba4e36722116ca.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/466fc5634b0f8ded9dba4e36722116ca.svg#Flinders Trial SemBd")format("svg");
}
2CSS rules to specify fonts
font-family: "Flinders Trial SemBd";