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