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