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