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