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