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