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