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