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