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