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