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