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