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