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