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