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