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