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