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