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