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