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