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