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