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