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