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