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