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