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