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