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