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