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