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