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