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