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