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