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