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