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