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