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