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