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