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