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