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