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