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