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