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