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