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