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