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