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