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