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