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