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