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