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