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