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