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