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