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