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