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