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