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