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