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