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