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