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