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