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