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