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