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