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