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