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