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