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