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