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