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