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