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