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