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