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