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