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