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