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