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