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