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