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