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