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