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