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