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