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