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