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