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