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