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