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