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