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