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