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