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