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