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