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