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