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