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