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