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