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