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