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