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