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