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