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