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