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