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