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