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