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