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