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