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