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