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