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