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