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