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