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