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