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