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