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