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