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