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