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