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