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