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