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