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