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