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