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