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