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