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