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