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