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