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