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