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