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