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