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