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