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