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