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