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