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