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