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