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