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