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