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