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