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