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