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