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