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