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