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