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