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