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