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