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