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