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