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