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