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