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