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