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