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