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