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