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