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