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