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