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