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