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