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