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