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