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