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