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