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