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