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