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