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