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