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